<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Flyingelectronics.com: Latest News]]></title>
		<link>http://www.flyingelectronics.com</link>
		<description><![CDATA[The latest news from Flyingelectronics.com.]]></description>
		<pubDate>Wed, 08 Sep 2010 23:42:58 +0000</pubDate>
		<item>
			<title><![CDATA[Why doesn't an event work on a new element I've created? ]]></title>
			<link>http://www.flyingelectronics.com/news/10/Why-doesn%27t-an-event-work-on-a-new-element-I%27ve-created%3F-.html</link>
			<pubDate>Wed, 22 Jul 2009 05:48:45 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/10/Why-doesn%27t-an-event-work-on-a-new-element-I%27ve-created%3F-.html</guid>
			<description><![CDATA[<p>As explained in the previous question about AJAX, events are bound only to elements that exist when you issue the jQuery call. When you create a new element, you must rebind the event to it.</p>
<p>You can avoid this extra step by using the Live Query plugin, as explained in the previous question about Ajax.</p>
<p>As of <strong>jQuery 1.3</strong>, you can use the <a title="Events/live" href="http://docs.jquery.com/Events/live">live</a> method for a subset of event types.</p>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Why do animations set the display style to block?" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=19">edit</a>&91;</div>
<p><a name="Why_do_animations_set_the_display_style_to_block.3F"></a></p>
<h3>Why do animations set the display style to block?</h3>
<p>To start with, you need to remember that only block-style elements can have a custom width or height. When you do an animation on an element that animates the height or width (such as show, hide, slideUp, or slideDown) then the display style property will be set to 'block' for the duration of the animation. The display property will be reverted to its original value after the animation completes.</p>
<p>There are two common workarounds:</p>
<p>If you want to have the element stay inline, but you just want it to animate in or out, you can use the fadeIn or fadeOut animations - which only affect the opacity of an element (and thus, don't need to have its display changed).</p>
<pre> // Instead of this:
 $("span").show("slow");
 
 // do this:
 $("span").fadeIn("slow");
</pre>
<p>The other option is to use a block-level element, but to add a float such that it appears to stay inline with the rest of the content around it. The result might looks something like this:</p>
<pre> // A floated block element
 &lt;div style="float:left;"&gt;...&lt;/div&gt;
 
 // Your code:
 $("div").show("slow");
</pre>]]></description>
			<content:encoded><![CDATA[<p>As explained in the previous question about AJAX, events are bound only to elements that exist when you issue the jQuery call. When you create a new element, you must rebind the event to it.</p>
<p>You can avoid this extra step by using the Live Query plugin, as explained in the previous question about Ajax.</p>
<p>As of <strong>jQuery 1.3</strong>, you can use the <a title="Events/live" href="http://docs.jquery.com/Events/live">live</a> method for a subset of event types.</p>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Why do animations set the display style to block?" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=19">edit</a>&91;</div>
<p><a name="Why_do_animations_set_the_display_style_to_block.3F"></a></p>
<h3>Why do animations set the display style to block?</h3>
<p>To start with, you need to remember that only block-style elements can have a custom width or height. When you do an animation on an element that animates the height or width (such as show, hide, slideUp, or slideDown) then the display style property will be set to 'block' for the duration of the animation. The display property will be reverted to its original value after the animation completes.</p>
<p>There are two common workarounds:</p>
<p>If you want to have the element stay inline, but you just want it to animate in or out, you can use the fadeIn or fadeOut animations - which only affect the opacity of an element (and thus, don't need to have its display changed).</p>
<pre> // Instead of this:
 $("span").show("slow");
 
 // do this:
 $("span").fadeIn("slow");
</pre>
<p>The other option is to use a block-level element, but to add a float such that it appears to stay inline with the rest of the content around it. The result might looks something like this:</p>
<pre> // A floated block element
 &lt;div style="float:left;"&gt;...&lt;/div&gt;
 
 // Your code:
 $("div").show("slow");
</pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[When will jQuery UI 1.6 be released? ]]></title>
			<link>http://www.flyingelectronics.com/news/9/When-will-jQuery-UI-1.6-be-released%3F-.html</link>
			<pubDate>Wed, 22 Jul 2009 05:48:19 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/9/When-will-jQuery-UI-1.6-be-released%3F-.html</guid>
			<description><![CDATA[<p>Please refer this blog post about jQuery UI 1.6 and 1.7: <a title="http://blog.jquery.com/2009/02/12/jquery-ui-17-is-the-new-16/" href="http://blog.jquery.com/2009/02/12/jquery-ui-17-is-the-new-16/">jQuery UI 1.7 is the new 1.6</a></p>
<p>Also see: <a title="http://wiki.jqueryui.com/" href="http://wiki.jqueryui.com/">jQuery UI Design &amp; Planning Wiki</a></p>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Cookbook" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=22">edit</a>&91;</div>
<p><a name="Cookbook"></a></p>
<ul>
<li>
<h2>Cookbook</h2>
</li>
</ul>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Recipe: Simple menu with hover to show sub-menu items" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=23">edit</a>&91;</div>
<p><a name="Recipe:_Simple_menu_with_hover_to_show_sub-menu_items"></a></p>
<h3>Recipe: Simple menu with hover to show sub-menu items</h3>
<ul>
<li>See <a title="Cookbook/Navigation" href="http://docs.jquery.com/Cookbook/Navigation">a simple show-submenu-on-hover-menu.</a> </li>
</ul>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Recipe: Hide All divs Except One" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=24">edit</a>&91;</div>
<p><a name="Recipe:_Hide_All_divs_Except_One"></a></p>
<h3>Recipe: Hide All <tt>div</tt>s Except One</h3>
<ul>
<li>See <a title="http://enure.net/dev/hide-all-except-one/" href="http://enure.net/dev/hide-all-except-one/">Hide All Except One (like tabs)</a> 
<ul>
<li>Simple markup, 13 lines, unobtrusive, bookmarkable. </li>
</ul>
</li>
</ul>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Recipe: Multi-select Listbox without the Ctrl key" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=25">edit</a>&91;</div>
<p><a name="Recipe:_Multi-select_Listbox_without_the_Ctrl_key"></a></p>
<h3>Recipe: Multi-select Listbox without the Ctrl key</h3>
<p>See the following for possible solutions:</p>
<ul>
<li><a title="http://realize.be/drupal-multiple-select-jquery-test/" href="http://realize.be/drupal-multiple-select-jquery-test/">Multiple select without the ctrl button</a> </li>
<li><a title="http://www.scotthorlbeck.com/code/tochecklist/" href="http://www.scotthorlbeck.com/code/tochecklist/">toChecklist plugin</a> </li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Please refer this blog post about jQuery UI 1.6 and 1.7: <a title="http://blog.jquery.com/2009/02/12/jquery-ui-17-is-the-new-16/" href="http://blog.jquery.com/2009/02/12/jquery-ui-17-is-the-new-16/">jQuery UI 1.7 is the new 1.6</a></p>
<p>Also see: <a title="http://wiki.jqueryui.com/" href="http://wiki.jqueryui.com/">jQuery UI Design &amp; Planning Wiki</a></p>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Cookbook" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=22">edit</a>&91;</div>
<p><a name="Cookbook"></a></p>
<ul>
<li>
<h2>Cookbook</h2>
</li>
</ul>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Recipe: Simple menu with hover to show sub-menu items" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=23">edit</a>&91;</div>
<p><a name="Recipe:_Simple_menu_with_hover_to_show_sub-menu_items"></a></p>
<h3>Recipe: Simple menu with hover to show sub-menu items</h3>
<ul>
<li>See <a title="Cookbook/Navigation" href="http://docs.jquery.com/Cookbook/Navigation">a simple show-submenu-on-hover-menu.</a> </li>
</ul>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Recipe: Hide All divs Except One" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=24">edit</a>&91;</div>
<p><a name="Recipe:_Hide_All_divs_Except_One"></a></p>
<h3>Recipe: Hide All <tt>div</tt>s Except One</h3>
<ul>
<li>See <a title="http://enure.net/dev/hide-all-except-one/" href="http://enure.net/dev/hide-all-except-one/">Hide All Except One (like tabs)</a> 
<ul>
<li>Simple markup, 13 lines, unobtrusive, bookmarkable. </li>
</ul>
</li>
</ul>
<div style="FLOAT: right; MARGIN-LEFT: 5px">[<a title="Edit section: Recipe: Multi-select Listbox without the Ctrl key" href="http://docs.jquery.com/action/edit/Frequently_Asked_Questions?section=25">edit</a>&91;</div>
<p><a name="Recipe:_Multi-select_Listbox_without_the_Ctrl_key"></a></p>
<h3>Recipe: Multi-select Listbox without the Ctrl key</h3>
<p>See the following for possible solutions:</p>
<ul>
<li><a title="http://realize.be/drupal-multiple-select-jquery-test/" href="http://realize.be/drupal-multiple-select-jquery-test/">Multiple select without the ctrl button</a> </li>
<li><a title="http://www.scotthorlbeck.com/code/tochecklist/" href="http://www.scotthorlbeck.com/code/tochecklist/">toChecklist plugin</a> </li>
</ul>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How do I select an item using class or id? ]]></title>
			<link>http://www.flyingelectronics.com/news/8/How-do-I-select-an-item-using-class-or-id%3F-.html</link>
			<pubDate>Wed, 22 Jul 2009 05:47:49 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/8/How-do-I-select-an-item-using-class-or-id%3F-.html</guid>
			<description><![CDATA[<ul>
<li>This code selects an element with an id of "myDivId". Since id's are unique this expression always selects 1 element, or none if the id does not exist. </li>
</ul>
<pre>  $('#myDivId')
</pre>
<ul>
<li>This code selects an element with a class of "myCssClass". Since any number of elements can have the same class, this expression will select any number of elements. </li>
</ul>
<pre>  $('.myCssClass')
</pre>
<p>A selected element can be assigned to a javascript variable like this</p>
<pre>  var myDivElement = $('#myDivId');
</pre>
<p>Usually selected elements are acted on by other JQuery functions:</p>
<pre>  var myValue = $('#myDivId').val();    // get the value of an element

  $('#myDivId').val("hello world");     // set the value of an element
</pre>]]></description>
			<content:encoded><![CDATA[<ul>
<li>This code selects an element with an id of "myDivId". Since id's are unique this expression always selects 1 element, or none if the id does not exist. </li>
</ul>
<pre>  $('#myDivId')
</pre>
<ul>
<li>This code selects an element with a class of "myCssClass". Since any number of elements can have the same class, this expression will select any number of elements. </li>
</ul>
<pre>  $('.myCssClass')
</pre>
<p>A selected element can be assigned to a javascript variable like this</p>
<pre>  var myDivElement = $('#myDivId');
</pre>
<p>Usually selected elements are acted on by other JQuery functions:</p>
<pre>  var myValue = $('#myDivId').val();    // get the value of an element

  $('#myDivId').val("hello world");     // set the value of an element
</pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jQuery Conference 2009: Registration Open]]></title>
			<link>http://www.flyingelectronics.com/news/7/jQuery-Conference-2009%3A-Registration-Open.html</link>
			<pubDate>Wed, 22 Jul 2009 05:46:04 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/7/jQuery-Conference-2009%3A-Registration-Open.html</guid>
			<description><![CDATA[<p>Registration for the 2009 jQuery Conference is now <strong>open</strong>!</p>
<p>Register here:</p>
<p><strong><a href="http://events.jquery.com/">http://events.jquery.com/</a></strong></p>
<p>More information about the conference: <a href="http://blog.jquery.com/2009/07/02/jquery-conference-2009-dates-and-venue/">Dates and Venue</a>.</p>
<p>The agenda is still being worked on and will be announced shortly. It&rsquo;s fully expected that the conference will sell out again (as it has every year, so far) so if you&rsquo;re interested in coming please sign up sooner rather than later!</p>]]></description>
			<content:encoded><![CDATA[<p>Registration for the 2009 jQuery Conference is now <strong>open</strong>!</p>
<p>Register here:</p>
<p><strong><a href="http://events.jquery.com/">http://events.jquery.com/</a></strong></p>
<p>More information about the conference: <a href="http://blog.jquery.com/2009/07/02/jquery-conference-2009-dates-and-venue/">Dates and Venue</a>.</p>
<p>The agenda is still being worked on and will be announced shortly. It&rsquo;s fully expected that the conference will sell out again (as it has every year, so far) so if you&rsquo;re interested in coming please sign up sooner rather than later!</p>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Export to Any Order/Accounting System]]></title>
			<link>http://www.flyingelectronics.com/news/6/Export-to-Any-Order%7B47%7DAccounting-System.html</link>
			<pubDate>Wed, 22 Jul 2009 05:41:58 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/6/Export-to-Any-Order%7B47%7DAccounting-System.html</guid>
			<description><![CDATA[<p>By default Interspire Shopping Cart 5.0 has integrated support for Intuit QuickBooks and also native export support to MYOB and Peachtree, but it takes just a few minutes to create your own export template for whichever accounting and/or order management system you use, including StoneEdge.<br /><br />You can choose which fields are exported and in which order (drag and drop), specify field delimiters and more. Export templates can be created for orders, products and customers.<br /><br />Add Multiple Products to Your Cart At Once<br />Instead of having to click through to view a product then add it to your cart, you can now add multiple items to your cart at once from any category page. Simply type in (or choose from a dropdown, depending on your settings) the quantity to buy and hit the "Add to Cart" button! This option can also be disabled from the settings page.</p>]]></description>
			<content:encoded><![CDATA[<p>By default Interspire Shopping Cart 5.0 has integrated support for Intuit QuickBooks and also native export support to MYOB and Peachtree, but it takes just a few minutes to create your own export template for whichever accounting and/or order management system you use, including StoneEdge.<br /><br />You can choose which fields are exported and in which order (drag and drop), specify field delimiters and more. Export templates can be created for orders, products and customers.<br /><br />Add Multiple Products to Your Cart At Once<br />Instead of having to click through to view a product then add it to your cart, you can now add multiple items to your cart at once from any category page. Simply type in (or choose from a dropdown, depending on your settings) the quantity to buy and hit the "Add to Cart" button! This option can also be disabled from the settings page.</p>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Available rules include:]]></title>
			<link>http://www.flyingelectronics.com/news/5/Available-rules-include%3A.html</link>
			<pubDate>Wed, 22 Jul 2009 05:41:39 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/5/Available-rules-include%3A.html</guid>
			<description><![CDATA[<p>* Buy X items get free shipping<br />* Free shipping on orders over $X<br />* Get an $X discount on orders of $Y or more<br />* $X discount for repeat customers<br />* X% discount for repeat customers<br />* Buy one get one free<br />* Buy one get something else free<br />* Get X% off all items in one/more categories<br /><br />Add Your Own Fields to the Signup Process<br />Custom form fields allow you to create as many new fields as you like to display on forms which your shoppers fill out, such as when registering for a new account or when creating a new address in their address book.<br /><br />The custom form field data appears in the customer's profile both from their "My Account" page and in your store's control panel. You can also re-arrange the appearance of the form fields using drag and drop. You can create the following field types:<br /><br />* Checkboxes<br />* Date fields<br />* Multi-line text fields<br />* Numbers only fields<br />* Password fields<br />* Radio buttons<br />* Text fields<br />* Pick lists<br /><br />Agree to Terms &amp; Conditions During Checkout<br />One of the biggest feature requests was the ability to make customers agree to terms and conditions during the checkout process.<br /><br />We designed this feature so you could type in your own terms and conditions or link to an existing page on your website. <br /><br /><strong>Tabs on Product Pages</strong><br /><br />Product tabs make it easier to display a large amount of information about a product without scrolling. You can switch between tabs instantly (no page reloading) and they can also be disabled from the control panel.<br /><br /><strong>Re-Ordering From a Previous Purchase</strong><br /><br />Once a customer has placed an order, they can now re-order those same items from their "My Account" section. All previously selected information, such as variations and configurable fields are persisted and the items are added straight to their cart.<br /><br />They can choose to re-order just a few items, or they can re-order everything from their previous order - in just one click.</p>]]></description>
			<content:encoded><![CDATA[<p>* Buy X items get free shipping<br />* Free shipping on orders over $X<br />* Get an $X discount on orders of $Y or more<br />* $X discount for repeat customers<br />* X% discount for repeat customers<br />* Buy one get one free<br />* Buy one get something else free<br />* Get X% off all items in one/more categories<br /><br />Add Your Own Fields to the Signup Process<br />Custom form fields allow you to create as many new fields as you like to display on forms which your shoppers fill out, such as when registering for a new account or when creating a new address in their address book.<br /><br />The custom form field data appears in the customer's profile both from their "My Account" page and in your store's control panel. You can also re-arrange the appearance of the form fields using drag and drop. You can create the following field types:<br /><br />* Checkboxes<br />* Date fields<br />* Multi-line text fields<br />* Numbers only fields<br />* Password fields<br />* Radio buttons<br />* Text fields<br />* Pick lists<br /><br />Agree to Terms &amp; Conditions During Checkout<br />One of the biggest feature requests was the ability to make customers agree to terms and conditions during the checkout process.<br /><br />We designed this feature so you could type in your own terms and conditions or link to an existing page on your website. <br /><br /><strong>Tabs on Product Pages</strong><br /><br />Product tabs make it easier to display a large amount of information about a product without scrolling. You can switch between tabs instantly (no page reloading) and they can also be disabled from the control panel.<br /><br /><strong>Re-Ordering From a Previous Purchase</strong><br /><br />Once a customer has placed an order, they can now re-order those same items from their "My Account" section. All previously selected information, such as variations and configurable fields are persisted and the items are added straight to their cart.<br /><br />They can choose to re-order just a few items, or they can re-order everything from their previous order - in just one click.</p>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Learn More About Interspire Shopping Cart]]></title>
			<link>http://www.flyingelectronics.com/news/4/Learn-More-About-Interspire-Shopping-Cart.html</link>
			<pubDate>Wed, 22 Jul 2009 05:41:16 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/4/Learn-More-About-Interspire-Shopping-Cart.html</guid>
			<description><![CDATA[<p>To see Our Shopping Cart in action, try the online demo. You can also watch the video tour, see live stores running Interspire Shopping Cart or take a look at the dozens of included store designs that are quick and easy to customize directly from your browser.<br /><br /><strong>Whats new in V5?</strong><br /><br />Our Shopping Cart 5.0 includes features which make it easier for you to sell more from your online store. New features such as discount rules, agree to terms and conditions before checkout, custom form fields and delivery/event dates mean Interspire Shopping Cart 5.0 is the only e-commerce software you need to sell anything online.<br /><br />A summary of new features is shown below but we recommend watching the what's new video to see these features in action. We believe that Interspire Shopping Cart 5.0 is the easiest-to-use and most fully-featured shopping cart software you'll find anywhere.<br /><br />Entice Customers to Spend More With Discount Rules<br />Discount rules allow you to run automated store-wide promotions and special offers, such as "Buy One, Get One Free", "Get $10 off When You Spend Over $100" or "Buy 5 Items and Get Free Shipping".<br /><br />The discount rules system is extremely flexible and optionally you can stack rules on top of each other so they run in sequence, applying multiple discounts for one order. You can of course disable rule stacking too.</p>]]></description>
			<content:encoded><![CDATA[<p>To see Our Shopping Cart in action, try the online demo. You can also watch the video tour, see live stores running Interspire Shopping Cart or take a look at the dozens of included store designs that are quick and easy to customize directly from your browser.<br /><br /><strong>Whats new in V5?</strong><br /><br />Our Shopping Cart 5.0 includes features which make it easier for you to sell more from your online store. New features such as discount rules, agree to terms and conditions before checkout, custom form fields and delivery/event dates mean Interspire Shopping Cart 5.0 is the only e-commerce software you need to sell anything online.<br /><br />A summary of new features is shown below but we recommend watching the what's new video to see these features in action. We believe that Interspire Shopping Cart 5.0 is the easiest-to-use and most fully-featured shopping cart software you'll find anywhere.<br /><br />Entice Customers to Spend More With Discount Rules<br />Discount rules allow you to run automated store-wide promotions and special offers, such as "Buy One, Get One Free", "Get $10 off When You Spend Over $100" or "Buy 5 Items and Get Free Shipping".<br /><br />The discount rules system is extremely flexible and optionally you can stack rules on top of each other so they run in sequence, applying multiple discounts for one order. You can of course disable rule stacking too.</p>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Important Features at a Glance]]></title>
			<link>http://www.flyingelectronics.com/news/3/Important-Features-at-a-Glance.html</link>
			<pubDate>Wed, 22 Jul 2009 05:40:27 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/3/Important-Features-at-a-Glance.html</guid>
			<description><![CDATA[<p>* Beautiful Store Designs<br />* Choose from dozens of industry-specific, professionally designed store layouts.<br />* Drag &amp; Drop Design Mode<br />* Arrange your store how you like it using just the mouse. No HTML knowledge required.<br />* Easy Shipping &amp; Payment Setup<br />* Integrate your store with all major providers including UPS, PayPal and Google Checkout.<br />* Built-In Inventory Tracking<br />* Choose from multiple inventory tracking options, all tied into your order system.<br />* Sell Physical &amp; Digital Items<br />* Flexible products system make it easy to sell everything from t-shirts to eBooks.<br />* Extensive Use of AJAX<br />* Near instant page loads make it easier for you and your shoppers to get things done.<br />* Advanced Product Variations<br />* Create product variations (such as different colors and sizes) in just a few clicks.<br />* Integrate With Interspire Products<br />* Add email marketing and self-serve F......'s to your store with just a few clicks.<br />* Integrates With Popular Payment and Shipping Providers<br />* Interspire Shopping Cart integrates with the world's most popular payment and shipping providers, including Google Checkout, PayPal, UPS, USPS and FedEx. For a complete list of supported payment and shipping providers, see the features page.</p>]]></description>
			<content:encoded><![CDATA[<p>* Beautiful Store Designs<br />* Choose from dozens of industry-specific, professionally designed store layouts.<br />* Drag &amp; Drop Design Mode<br />* Arrange your store how you like it using just the mouse. No HTML knowledge required.<br />* Easy Shipping &amp; Payment Setup<br />* Integrate your store with all major providers including UPS, PayPal and Google Checkout.<br />* Built-In Inventory Tracking<br />* Choose from multiple inventory tracking options, all tied into your order system.<br />* Sell Physical &amp; Digital Items<br />* Flexible products system make it easy to sell everything from t-shirts to eBooks.<br />* Extensive Use of AJAX<br />* Near instant page loads make it easier for you and your shoppers to get things done.<br />* Advanced Product Variations<br />* Create product variations (such as different colors and sizes) in just a few clicks.<br />* Integrate With Interspire Products<br />* Add email marketing and self-serve F......'s to your store with just a few clicks.<br />* Integrates With Popular Payment and Shipping Providers<br />* Interspire Shopping Cart integrates with the world's most popular payment and shipping providers, including Google Checkout, PayPal, UPS, USPS and FedEx. For a complete list of supported payment and shipping providers, see the features page.</p>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[No Other Shopping Cart Software is So Easy to Use]]></title>
			<link>http://www.flyingelectronics.com/news/2/No-Other-Shopping-Cart-Software-is-So-Easy-to-Use.html</link>
			<pubDate>Wed, 22 Jul 2009 05:40:00 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/2/No-Other-Shopping-Cart-Software-is-So-Easy-to-Use.html</guid>
			<description><![CDATA[<p>Our&nbsp;Shopping Cart was designed with you, the store owner in mind. It runs from your web browser and can be completely customized without editing any HTML files. Combine this with unmatched ease-of-use, built-in marketing tools and business intelligence, and you have fully-featured shopping cart software that contains everything you need to succeed online.<br /><br />* Be Up and Running in Minutes<br />* Choose one of the included store designs, type the text for your logo and you're new store is live! Easy-To-Use<br />* Control Panel<br />* Manage every aspect of your store from the Interspire Shopping Cart control panel in your browser. Customize Your<br />* Entire Store<br />* Use drag and drop to customize your store from your browser. No code changes required! Built-In Business<br />* Intelligence<br />* Conversion rates, best selling products, top customers - It's all here.</p>]]></description>
			<content:encoded><![CDATA[<p>Our&nbsp;Shopping Cart was designed with you, the store owner in mind. It runs from your web browser and can be completely customized without editing any HTML files. Combine this with unmatched ease-of-use, built-in marketing tools and business intelligence, and you have fully-featured shopping cart software that contains everything you need to succeed online.<br /><br />* Be Up and Running in Minutes<br />* Choose one of the included store designs, type the text for your logo and you're new store is live! Easy-To-Use<br />* Control Panel<br />* Manage every aspect of your store from the Interspire Shopping Cart control panel in your browser. Customize Your<br />* Entire Store<br />* Use drag and drop to customize your store from your browser. No code changes required! Built-In Business<br />* Intelligence<br />* Conversion rates, best selling products, top customers - It's all here.</p>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Best shopping cart]]></title>
			<link>http://www.flyingelectronics.com/news/1/Best-shopping-cart.html</link>
			<pubDate>Wed, 22 Jul 2009 05:38:32 +0000</pubDate>
			<guid isPermaLink="false">http://www.flyingelectronics.com/news/1/Best-shopping-cart.html</guid>
			<description><![CDATA[<p>This is a&nbsp; best shopping&nbsp; cart ,do you know!</p>]]></description>
			<content:encoded><![CDATA[<p>This is a&nbsp; best shopping&nbsp; cart ,do you know!</p>]]></content:encoded>
		</item>
	</channel>
</rss>
