<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ajaxBlender.com&#8212; A Whole Lot of AJAX! Directory for Web 2.0 AJAX scripts, demos and tutorials. Custom AJAX Coding Service for Your Web 2.0 Website.</title>
	<atom:link href="http://www.ajaxblender.com/scripts/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxblender.com</link>
	<description>A Whole Lot of AJAX!</description>
	<lastBuildDate>Mon, 02 May 2011 07:38:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>bgStretcher II</title>
		<link>http://www.ajaxblender.com/bgstretcher-2-jquery-stretch-background-plugin-updated.html</link>
		<comments>http://www.ajaxblender.com/bgstretcher-2-jquery-stretch-background-plugin-updated.html#comments</comments>
		<pubDate>Tue, 26 Apr 2011 11:50:16 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Effects]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[jquery effects]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/new-bgstretcher.html</guid>
		<description><![CDATA[bgStretcher 2011 (Background Stretcher) is a jQuery plug-in which allows you to add a large image (or a set of images) to the background of your web page and will proportionally resize the image(s) to fill the entire window area. The plug-in will work as a slideshow if multiple images mode is used (the speed [...]]]></description>
			<content:encoded><![CDATA[<p>bgStretcher 2011 (Background Stretcher) is a jQuery plug-in which allows you to add a large image (or a set of images) to the background of your web page and will proportionally resize the image(s) to fill the entire window area. The plug-in will work as a slideshow if multiple images mode is used (the speed and duration for the slideshow is configurable).<span id="more-1202"></span><br />
bgStretcher 2011 has tons of new features suggested by our users. We appreciate all your feedback, and you will see below that we have implemented many new features and functions requested. Please continue to help us improve it by leaving suggestions in our comments area or you may contact us directly.</p>
<h3>Features</h3>
<ol>
<li>Unobtrusive script, simple to setup</li>
<li>Works with all modern browsers</li>
<li>Supports single and multiple images</li>
</ol>
<p>&nbsp;</p>
<h3>How to Use</h3>
<p>1. Download bgStretcher script. The package already contains the jQuery framework.</p>
<p>2. Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect jQuery framework, bgStretcher plugin and CSS. <em>(Make sure paths to files are correct.)</em></p>
<pre class="html">
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jquery-1.5.2.min.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../bgstretcher.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlOtherTag">&lt;link rel=<span class="htmlAttributeValue">&quot;stylesheet&quot;</span> href=<span class="htmlAttributeValue">&quot;../bgstretcher.css&quot;</span> /&gt;</span>
</pre>
<p>3. Use the following code to initialize the bgStretcher (see Options section below for details):</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
$<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
<span class="phpComment">//  Initialize Backgound Stretcher
</span>$<span class="phpOperator">(</span><span class="phpString">'BODY'</span><span class="phpOperator">)</span>.bgStretcher<span class="phpOperator">(</span><span class="phpOperator">{</span>
images<span class="phpOperator">:</span> <span class="phpOperator">[</span><span class="phpString">'images/sample-<span class="phpNumber">1</span><span class="phpOperator">.</span>jpg'</span>, <span class="phpString">'images/sample-<span class="phpNumber">2</span><span class="phpOperator">.</span>jpg'</span>, <span class="phpString">'images/sample-<span class="phpNumber">3</span><span class="phpOperator">.</span>jpg'</span>, <span class="phpString">'images/sample-<span class="phpNumber">4</span><span class="phpOperator">.</span>jpg'</span><span class="phpOperator">]</span>, imageWidth<span class="phpOperator">:</span> 1024, imageHeight<span class="phpOperator">:</span> 768
<span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>And if you want to initialize plugin for custom div use next:</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
$<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
<span class="phpComment">//  Initialize Backgound Stretcher
</span>$<span class="phpOperator">(</span><span class="phpString">'<span class="phpOperator">.</span>classname-of-div'</span><span class="phpOperator">)</span>.bgStretcher<span class="phpOperator">(</span><span class="phpOperator">{</span>
images<span class="phpOperator">:</span> <span class="phpOperator">[</span><span class="phpString">'images/sample-<span class="phpNumber">1</span><span class="phpOperator">.</span>jpg'</span>, <span class="phpString">'images/sample-<span class="phpNumber">2</span><span class="phpOperator">.</span>jpg'</span>, <span class="phpString">'images/sample-<span class="phpNumber">3</span><span class="phpOperator">.</span>jpg'</span>, <span class="phpString">'images/sample-<span class="phpNumber">4</span><span class="phpOperator">.</span>jpg'</span><span class="phpOperator">]</span>, imageWidth<span class="phpOperator">:</span> 1024, imageHeight<span class="phpOperator">:</span> 768
<span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>4. Insert content of your page inside BODY or custom DIV:</p>
<pre class="html">
<span class="htmlOtherTag">&lt;body&gt;</span>
<span class="htmlOtherTag">&lt;div class=<span class="htmlAttributeValue">&quot;classname-of-div&quot;</span>&gt;</span>
Your content goes here...
<span class="htmlOtherTag">&lt;/div&gt;</span>
<span class="htmlOtherTag">&lt;/body&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<h3>Options</h3>
<table class="options" border="0">
<tbody>
<tr>
<th>Configuration Option</th>
<th>Default Value</th>
<th>Description</th>
</tr>
<tr>
<td><strong>imageContainer</strong></td>
<td>bgstretcher</td>
<td>bgStretcher will automatically build structure for the images list in a DOM tree. This parameter is ID for the images holder. Try inspecting the tree with a <a href="http://getfirebug.com/" target="_blank">FireBug</a> to get an idea how it&#8217;s constructed.</td>
</tr>
<tr class="odd">
<td><strong>resizeProportionally</strong></td>
<td>true</td>
<td>Indicates if background image(s) will be resized proportionally or not.</td>
</tr>
<tr>
<td><strong>resizeAnimate</strong></td>
<td>false</td>
<td>Indicates if background image(s) will be resized with animation. (Be careful, this may slow down some PCs if your images are large.)</td>
</tr>
<tr class="odd">
<td><strong>images</strong></td>
<td><em>empty</em></td>
<td>An array containing list of images to be displayed on page&#8217;s background.</td>
</tr>
<tr>
<td><strong>imageWidth</strong></td>
<td>1024</td>
<td>Original image&#8217;s width.</td>
</tr>
<tr class="odd">
<td><strong>imageHeight</strong></td>
<td>768</td>
<td>Original image&#8217;s height.</td>
</tr>
<tr>
<td><strong>maxWidth</strong></td>
<td>auto</td>
<td>Maximum image&#8217;s width.</td>
</tr>
<tr class="odd">
<td><strong>maxHeight</strong></td>
<td>auto</td>
<td>Maximum image&#8217;s height.</td>
</tr>
<tr>
<td><strong>nextSlideDelay</strong></td>
<td>3000 <em>(3 seconds)</em></td>
<td>Numeric value in milliseconds. The parameter sets delay until next slide should start.</td>
</tr>
<tr class="odd">
<td><strong>slideShowSpeed</strong></td>
<td>normal</td>
<td>Numeric value in milliseconds or jQuery string value (&#8217;fast&#8217;, &#8216;normal&#8217;, &#8217;slow&#8217;). The parameter sets the speed of transition between images.</td>
</tr>
<tr>
<td><strong>slideShow</strong></td>
<td>true</td>
<td>Allows or disallows slideshow functionality.</td>
</tr>
<tr class="odd">
<td><strong>transitionEffect</strong></td>
<td>fade</td>
<td>Transition effect (use also: none, simpleSlide, superSlide).</td>
</tr>
<tr>
<td><strong>slideDirection</strong></td>
<td>N</td>
<td>Slide Diraction: N &#8211; north, S &#8211; south, W &#8211; west, E &#8211; East (if transitionEffect = superSlide use also: NW, NE, SW, SE).</td>
</tr>
<tr class="odd">
<td><strong>sequenceMode</strong></td>
<td>normal</td>
<td>Sequence mode (use also: back, random)</td>
</tr>
<tr>
<td><strong>buttonPrev</strong></td>
<td>empty</td>
<td>Previous button CSS selector</td>
</tr>
<tr class="odd">
<td><strong>buttonNext</strong></td>
<td>empty</td>
<td>Next button CSS selector</td>
</tr>
<tr>
<td><strong>pagination</strong></td>
<td>empty</td>
<td>CSS selector for pagination</td>
</tr>
<tr class="odd">
<td><strong>anchoring</strong></td>
<td>&#8216;left top&#8217;</td>
<td>Anchoring bgStrtcher area regarding window</td>
</tr>
<tr>
<td><strong>anchoringImg</strong></td>
<td>&#8216;left top&#8217;</td>
<td>Anchoring images regarding window</td>
</tr>
<tr class="odd">
<td><strong>preloadImg</strong></td>
<td>false</td>
<td>For Preload images use true</td>
</tr>
<tr>
<td><strong>stratElementIndex</strong></td>
<td>0</td>
<td>Start element index</td>
</tr>
<tr class="odd">
<td><strong>callbackfunction</strong></td>
<td>null</td>
<td>Name of callback function</td>
</tr>
</tbody>
</table>
<h3>Methods</h3>
<table class="options" border="0">
<tbody>
<tr>
<th>Method Name</th>
<th>Description</th>
</tr>
<tr>
<td><strong>$(objID).bgStretcher.play()</strong></td>
<td>Resume background slideshow</td>
</tr>
<tr class="odd">
<td><strong>$(objID).bgStretcher.pause()</strong></td>
<td>Pause background slideshow</td>
</tr>
<tr>
<td><strong>$(objID).bgStretcher.sliderDestroy()</strong></td>
<td>Destroy background slideshow</td>
</tr>
</tbody>
</table>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1202&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/bgstretcher-2-jquery-stretch-background-plugin-updated.html/feed</wfw:commentRss>
		<slash:comments>98</slash:comments>
		</item>
		<item>
		<title>Browser Detection</title>
		<link>http://www.ajaxblender.com/browser-detection.html</link>
		<comments>http://www.ajaxblender.com/browser-detection.html#comments</comments>
		<pubDate>Wed, 24 Nov 2010 12:50:20 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[browser detection]]></category>
		<category><![CDATA[detect old browsers]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1190</guid>
		<description><![CDATA[Our friends at DevSlide recently launched a Labs area where they publish ideas, software, script, apps, etc., and we thought that this one could be interesting for JS developers and webmasters. It is a JavaScript browser detection tool that detects the user’s browser. If an old browser is detected, it will display a friendly suggestion [...]]]></description>
			<content:encoded><![CDATA[<p>Our friends at DevSlide recently launched a Labs area where they publish ideas, software, script, apps, etc., and we thought that this one could be interesting for JS developers and webmasters. It is a JavaScript browser detection tool that detects the user’s browser. If an old browser is detected, it will display a friendly suggestion for them to upgrade their browser to the latest version or download a new browser.<span id="more-1190"></span></p>
<h2>Background</h2>
<p>Coding for old browsers (such as old versions of Internet Explorer, Firefox, Opera) can be a nightmare even for experienced web developers who hand code XHTML/CSS markup. It is difficult to find a balance of features, speed, and browser compatibility. It is particularly frustrating when you run a JS / CSS3 website and know that only a small percentage of your users are preventing you from using all the features of CSS3 (which, when used correctly, is feature rich, optimizes page load speeds and is easier to maintain). </p>
<p>Well, we have not opened a new world here :). But, this is a big problem and it is further complicated, because most users who are running such an out-dated browser do not even know where to go to upgrade their browser. The DevSlide team created a script written from scratch in JavaScript and will not conflict with any existing JavaScript frameworks such as jQuery, and MooTools. It displays a nicely styled and friendly message. You can choose from five predefined messages (professional, informal, goofy, technical, and even a mean one, lol) or customize your own message. There is also a cookie feature, so that the user can choose to ignore the message or ask to be reminded later.</p>
<h2>How to Install It</h2>
<p>It&#8217;s easy to add to your site and configure. There is even a <a href="http://www.devslide.com/labs/browser-detection/configure">configuration form</a> where you can customize it and load it from the DevSlide servers or download and host it on your server.</p>
<p>1.) Go to <a href="http://www.devslide.com/labs/browser-detection">DevSlide Labs</a> and configure the script.<br />
2.) Add generated code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag.<br />
3.) Help us all to eliminate out dated browsers ;)</p>
<p>That&#8217;s it ;) Click the links below to visit DevSlide Labs to download and configure the script.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1190&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/browser-detection.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jFiller</title>
		<link>http://www.ajaxblender.com/jfiller.html</link>
		<comments>http://www.ajaxblender.com/jfiller.html#comments</comments>
		<pubDate>Mon, 26 Apr 2010 08:08:30 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[auto forms filling]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1157</guid>
		<description><![CDATA[Our team often works on developing server-side scripts which sometimes have registration forms, large survey forms, etc. During testing our engineers might have to fill out a form 200-300 times a day, and this, of course, is a boring and tedious process ;)
That&#8217;s why we developed a quick but very useful jQuery plugin which prevent [...]]]></description>
			<content:encoded><![CDATA[<p>Our team often works on developing server-side scripts which sometimes have registration forms, large survey forms, etc. During testing our engineers might have to fill out a form 200-300 times a day, and this, of course, is a boring and tedious process ;)<span id="more-1157"></span></p>
<p>That&#8217;s why we developed a quick but very useful jQuery plugin which prevent the developer from having to fill out the form manually during testing.  It automatically detects forms in your document and saves your filling preference. The jFiller plugin also provides proper data for the different types of fields: radio buttons, check boxes, text inputs, textareas, selects, etc. The only field type we cannot provide automatic data filling for is the file upload field, but the reason is obvious, right? :)</p>
<p>And at the end it won&#8217;t require any modifications, you just include it and use it. When the debug phase is complete, you can simply exclude it from your HTML document. We like this automatic form filling script, and hope others will find it useful during development too.</p>
<h2>How to Use</h2>
<p>1.) <a title="Download jFiller jQuery Plugin" href="http://www.ajaxblender.com/script-sources/jfiller/download/jfiller.zip" target="_blank">Download</a> jFiller script. The package already contains jQuery framework.<br />
2.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect jQuery framework and jFiller plugin. <em>(Make sure paths to files are correct.)</em></p>
<pre class="html">
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;jquery.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;jquery.cookie.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;jfiller.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlOtherTag">&lt;style type=<span class="htmlAttributeValue">&quot;text/css&quot;</span> media=<span class="htmlAttributeValue">&quot;screen&quot;</span>&gt;</span>
    @import url(&quot;jfiller.css&quot;);
<span class="htmlOtherTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span>&gt;</span>
$(document).ready(function() {
    $(&#039;form&#039;).FillIt();
});
<span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1157&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jfiller.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>jShaker</title>
		<link>http://www.ajaxblender.com/jshaker.html</link>
		<comments>http://www.ajaxblender.com/jshaker.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 15:18:19 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Effects]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[shake]]></category>
		<category><![CDATA[vibrate]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1142</guid>
		<description><![CDATA[jShaker is a simple jQuery plugin which runs a shake, vibrate effect on a selected web page element and all its children emulating an shaker effect. 
Why jShaker? Well, we added a new guy to the ajaxBlender team and one of his tasks was to create several sample jQuery plugins. The jShaker is one of [...]]]></description>
			<content:encoded><![CDATA[<p>jShaker is a simple jQuery plugin which runs a shake, vibrate effect on a selected web page element and all its children emulating an shaker effect. <span id="more-1142"></span></p>
<p>Why jShaker? Well, we added a new guy to the ajaxBlender team and one of his tasks was to create several sample jQuery plugins. The jShaker is one of them, but we don&#8217;t think the script will find a real use. (Actually we’d be surprised if you do. So, please share links with us.) We posted it, because it’s still a good little learning script.</p>
<p>Please note that the script will shake every children element of the parent running jShaker, and obviously the browser may slow down if there are a lot of nested elements, so be careful.  ;)</p>
<h3>Features</h3>
<ol>
<li>Light-weight script</li>
<li>Easy to integrate</li>
<li>Works with all modern browsers</li>
</ol>
<h3>How to Use</h3>
<p>1.) <a title="Download jShaker jQuery Plugin" href="http://www.ajaxblender.com/script-sources/jshaker/download/jshaker.zip">Download</a> jShaker script. The package already contains the jQuery framework.</p>
<p>2.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect the jQuery framework and the jShaker plugin. <em>(Make sure your paths to the files are correct.)</em></p>
<pre class="html">
<span class="htmlScriptTag">&lt;script src=<span class="htmlAttributeValue">&quot;../jquery-1.4.2.min.js&quot;</span> type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span> <span class="htmlScriptTag">&lt;script src=<span class="htmlAttributeValue">&quot;../jshaker.js&quot;</span> type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
<p>3.) jShaker plugin will extend the jQuery function so that you can call it on any element such as:</p>
<pre class="html">
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span>&gt;</span>// <span class="htmlOtherTag">&lt;![CDATA[
$(document).ready(function(){
   $(&#039;.block&#039;).click(function(){
       $(this).jshaker();
   });
});
// ]]&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1142&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jshaker.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>jNiceIt</title>
		<link>http://www.ajaxblender.com/jniceit.html</link>
		<comments>http://www.ajaxblender.com/jniceit.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 14:25:23 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1136</guid>
		<description><![CDATA[jNiceIt is a jQuery plugin which allows you to customize generic form controls and apply your customized design to them. You may use this plugin to emulate MS Windows, Linux or Apple MacOS controls or your own unique style.
Design of each control can be fully customized via CSS. The plugin supports both fixed and fluid [...]]]></description>
			<content:encoded><![CDATA[<p>jNiceIt is a jQuery plugin which allows you to customize generic form controls and apply your customized design to them. You may use this plugin to emulate MS Windows, Linux or Apple MacOS controls or your own unique style.<span id="more-1136"></span></p>
<p>Design of each control can be fully customized via CSS. The plugin supports both fixed and fluid page layouts because it does not use absolute positioning of skinned controls like most jNiceIt alternatives do.</p>
<h3>Features</h3>
<ol>
<li>Light-weight script</li>
<li>Easy to integrate</li>
<li>Fully customizable via CSS</li>
<li>Works with all modern browsers</li>
<li>Supports fixed and fluid page layouts</li>
<li>The following controls supported:
<ol>
<li>Button</li>
<li>Text Input</li>
<li>Check Box</li>
<li>Radio Button</li>
<li>File Upload Input</li>
<li>Select Box</li>
<li>List</li>
<li>Text Area</li>
</ol>
</li>
</ol>
<h3>How to Use</h3>
<p>1.) <a title="Download jNiceIt jQuery Plugin" href="http://www.ajaxblender.com/script-sources/jniceit/download/jniceit.zip">Download</a> jNiceIt script. The package already contains jQuery framework.</p>
<p>2.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect jQuery framework and jNiceIt plugin. <em>(Make sure paths to files are correct.)</em></p>
<pre class="html">
<span class="htmlStyleTag">&lt;style type=<span class="cssString">&quot;text/css&quot;</span> media=<span class="cssString">&quot;screen&quot;</span>&gt;</span>
    <span class="cssImport">@import url(<span class="cssString">"../jniceit.css"</span>);</span>
<span class="htmlStyleTag">&lt;/style&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jquery-1.3.2.min.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jniceit.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span>&gt;</span>
$(document).ready(function() {
    //    This will skin the form with class &#039;.NiceIt&#039;
    $(&#039;form.NiceIt&#039;).NiceIt();
});
<span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1136&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jniceit.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>jSnow</title>
		<link>http://www.ajaxblender.com/jsnow.html</link>
		<comments>http://www.ajaxblender.com/jsnow.html#comments</comments>
		<pubDate>Thu, 17 Dec 2009 15:21:33 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Effects]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery effects]]></category>
		<category><![CDATA[snow effect]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1119</guid>
		<description><![CDATA[Adding an animation effect of falling snow with JavaScript is a quick and easy way to keep your site looking current during the holidays for your site’s users. jSnow, is a jQuery plug-in that adds falling snow effect to your website. jSnow is lightweight (2kb), doesn&#8217;t require any external files to run (css or images) [...]]]></description>
			<content:encoded><![CDATA[<p>Adding an animation effect of falling snow with JavaScript is a quick and easy way to keep your site looking current during the holidays for your site’s users. jSnow, is a jQuery plug-in that adds falling snow effect to your website. jSnow is lightweight (2kb), doesn&#8217;t require any external files to run (css or images) and it&#8217;s very easy to use.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1119&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jsnow.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>jAni</title>
		<link>http://www.ajaxblender.com/jani.html</link>
		<comments>http://www.ajaxblender.com/jani.html#comments</comments>
		<pubDate>Mon, 23 Nov 2009 16:05:22 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Effects]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[background animate]]></category>
		<category><![CDATA[image effects]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1090</guid>
		<description><![CDATA[jAni is a simple plugin for jQuery which allows you animate background images. The plugin is basically an alternative to the animated GIF but with several benefits. At first, it&#8217;s always better to use an animated GIF as this format is supported by all browsers without any JavaScript code or additional markup, but the &#8220;dark [...]]]></description>
			<content:encoded><![CDATA[<p>jAni is a simple plugin for jQuery which allows you animate background images. The plugin is basically an alternative to the animated GIF but with several benefits.<span id="more-1090"></span> At first, it&#8217;s always better to use an animated GIF as this format is supported by all browsers without any JavaScript code or additional markup, but the &#8220;dark side&#8221; of it is that an animated GIF allows only 256 colors and you cannot control animation in any way. The jAni loads a long vertical image and changes its background position with the speed you setup, giving you more control of the animation.</p>
<h3>Features</h3>
<ol>
<li>Light-weight script</li>
<li>Easy to integrate</li>
<li>Fully customizable via CSS</li>
<li>Works with all modern browsers</li>
</ol>
<h3>How to Use</h3>
<p>1.) <a href="http://www.ajaxblender.com/script-sources/jani/download/jani.zip">Download</a> jAni script. The package already contains jQuery framework.<br />
2.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect the jQuery framework and jAni plugin. <em>(Make sure paths to files are correct.)</em></p>
<pre class="html">
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jquery-1.3.2.min.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jani.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
<p>3.) Add a style containing the url to your background with animation (this may be added to a separate CSS document or inside the <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag):</p>
<pre class="html">
<span class="htmlStyleTag">&lt;style type=<span class="cssString">&quot;text/css&quot;</span>&gt;</span>
<span class="cssSelector">.animation-1 {</span>
<span class="cssProperty">background</span><span class="cssRest">:</span><span class="cssValue"> url(./images/sample-animation.gif) no-repeat left top</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="htmlStyleTag">&lt;/style&gt;</span>
</pre>
<p>4.) Add an empty DIV which will display animation in your document:</p>
<pre class="html">
<span class="htmlOtherTag">&lt;div id=<span class="htmlAttributeValue">&quot;animation-1&quot;</span>&gt;</span><span class="htmlOtherTag">&lt;/div&gt;</span>
</pre>
<p>5.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to initialize jAni and start the animation.</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
$<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
$<span class="phpOperator">(</span><span class="phpString">'#animation-<span class="phpNumber">1</span>'</span><span class="phpOperator">)</span>.jani<span class="phpOperator">(</span><span class="phpOperator">{</span> frameWidth<span class="phpOperator">:</span> 100, frameHeight<span class="phpOperator">:</span> 100, speed<span class="phpOperator">:</span> 100, totalFrames<span class="phpOperator">:</span> 19 <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
$<span class="phpOperator">(</span><span class="phpString">'#animation-<span class="phpNumber">1</span>'</span><span class="phpOperator">)</span>.jani<span class="phpOperator">.</span>play<span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<h3>jAni Methods</h3>
<p><strong>jani.play()</strong><br />
Start playing animation.</p>
<p><strong>jani.pause()</strong><br />
Pause animation.</p>
<p><strong>jani.stop()</strong><br />
Stop animation.</p>
<h3>Parameters</h3>
<p>The table below contains a list of parameters accepted by the <strong>.jani()</strong> function.</p>
<table class="options" border="0">
<tbody>
<tr>
<th>Parameters</th>
<th>Description</th>
</tr>
<tr>
<td><strong>frameWidth</strong></td>
<td>Width of a single frame.</td>
</tr>
<tr class="odd">
<td><strong>frameHeight</strong></td>
<td>Height of a single frame.</td>
</tr>
<tr>
<td><strong>speed</strong></td>
<td>Animation speed.</td>
</tr>
<tr class="odd">
<td><strong>totalFrames</strong></td>
<td>Total frames in the animation.</td>
</tr>
<tr>
<td><strong>loop</strong></td>
<td>Loop an animation or not. By default, value is <em>true</em>.</td>
</tr>
</tbody>
</table>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1090&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jani.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>jQTouch</title>
		<link>http://www.ajaxblender.com/jqtouch.html</link>
		<comments>http://www.ajaxblender.com/jqtouch.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 13:10:50 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1079</guid>
		<description><![CDATA[A jQuery plugin for mobile web development on the iPhone, iPod Touch, and other forward-thinking devices.
]]></description>
			<content:encoded><![CDATA[<p>A jQuery plugin for mobile web development on the iPhone, iPod Touch, and other forward-thinking devices.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1079&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jqtouch.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jClip</title>
		<link>http://www.ajaxblender.com/jclip-plugin.html</link>
		<comments>http://www.ajaxblender.com/jclip-plugin.html#comments</comments>
		<pubDate>Mon, 16 Nov 2009 16:41:32 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Effects]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[clip]]></category>
		<category><![CDATA[image effects]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1065</guid>
		<description><![CDATA[jClip is a simple jQuery plugin which allows image and content clipping. This is useful for when an image (or content area) is larger than the container where it resides. You are able to specify the dimensions of an absolutely positioned element which you want to be visible. The element is then clipped into the [...]]]></description>
			<content:encoded><![CDATA[<p>jClip is a simple jQuery plugin which allows image and content clipping. This is useful for when an image (or content area) is larger than the container where it resides. You are able to specify the dimensions of an absolutely positioned element which you want to be visible. The element is then clipped into the rectangular shape and displayed.<span id="more-1065"></span></p>
<p>The function of jClip is similar to css &#8220;clip:rect&#8221; style but jClip provides a fully cross-browser implementation of this method with ability for you to animate the clipped content using standard jQuery animate functions.</p>
<h3>Features</h3>
<ol>
<li> Light-weight script</li>
<li>Easy to integrate</li>
<li>Works with all modern browsers</li>
</ol>
<h3>How to Use</h3>
<p>1.) <a href="http://www.ajaxblender.com/script-sources/jclip/download/jclip.zip">Download</a> jClip script. The package already contains jQuery framework.<br />
2.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect jQuery framework and jClip plugin. <em>(Make sure paths to files are correct.)</em></p>
<pre class="html">
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jquery-1.3.2.min.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../xbreadcrumbs.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
<p>3.) Use the following code to apply the clipping function to an element, we recommend you run it in a domReady event. The code below will clip the element with ID #sample-1 from its top left corner with a width of 100 and a height of 100:</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
     $<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
          $<span class="phpOperator">(</span><span class="phpString">'#sample-<span class="phpNumber">1</span>'</span><span class="phpOperator">)</span>.clip<span class="phpOperator">(</span><span class="phpNumber">0</span>, <span class="phpNumber">0</span>, 100, 100<span class="phpOperator">)</span><span class="phpText">;</span>
          <span class="phpComment">// The code above is equal to<span class="phpOperator">:</span>
</span>          $<span class="phpOperator">(</span><span class="phpString">'#sample-<span class="phpNumber">1</span>'</span><span class="phpOperator">)</span>.clip<span class="phpOperator">(</span>100, 100<span class="phpOperator">)</span><span class="phpText">;</span>
     <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>4.) To remove clipping from an element, pass the keyword &#8216;remove&#8217; to the jclip function:</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
     $<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
          $<span class="phpOperator">(</span><span class="phpString">'#sample-<span class="phpNumber">1</span>'</span><span class="phpOperator">)</span>.clip<span class="phpOperator">(</span><span class="phpString">'remove'</span><span class="phpOperator">)</span><span class="phpText">;</span>
     <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>5.) By default, jClip will start clipping from the top left corner of the element but you may specify Top and Left positions with the first two arguments. As seen in the sample below, jClip will start clipping with 20 pixel offset from top and left:</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
     $<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
          $<span class="phpOperator">(</span><span class="phpString">'#sample-<span class="phpNumber">1</span>'</span><span class="phpOperator">)</span>.clip<span class="phpOperator">(</span>20, 20, 100, 100<span class="phpOperator">)</span><span class="phpText">;</span>
     <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<h3>Parameters</h3>
<p>The table below contains a list of parameters accepted by the <strong>.jclip()</strong> function.</p>
<table class="options" border="0">
<tbody>
<tr>
<th>Parameters</th>
<th>Description</th>
</tr>
<tr>
<td><strong>remove</strong></td>
<td>jclip(&#8217;remove&#8217;). Removes clipping from the element.</td>
</tr>
<tr class="odd">
<td><strong>width, height</strong></td>
<td>jclip(width, height). Applies clipping to an element from top left corner with specified width and height.</td>
</tr>
<tr>
<td><strong>left, top, width, height</strong></td>
<td>jclip(left, top, width, height). Applies clipping to an element from the specified left and top coordinate with a set width and height of the clipping area.</td>
</tr>
</tbody>
</table>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1065&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/jclip-plugin.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>xBreadcrumbs</title>
		<link>http://www.ajaxblender.com/xbreadcrumbs.html</link>
		<comments>http://www.ajaxblender.com/xbreadcrumbs.html#comments</comments>
		<pubDate>Wed, 11 Nov 2009 13:51:01 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[breadcrumbs]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1038</guid>
		<description><![CDATA[xBreadcrumbs (Extended Breadcrumbs) is a jQuery plug-in to create categorized breadcrumbs for your site. This may be useful if your website has a deep structure and you want allow your visitors to quickly navigate through one section of the site to another. xBreadcrumbs works with unordered lists (UL/LI) which would make your breadcrumbs fully optimized [...]]]></description>
			<content:encoded><![CDATA[<p>xBreadcrumbs (Extended Breadcrumbs) is a jQuery plug-in to create categorized breadcrumbs for your site. This may be useful if your website has a deep structure and you want allow your visitors to quickly navigate through one section of the site to another. <span id="more-1038"></span>xBreadcrumbs works with unordered lists (UL/LI) which would make your breadcrumbs fully optimized for search engines. An SEO freindly breadcrumb has many benefits.</p>
<h3>Features</h3>
<ol>
<li> Light-weight script (~3Kb)</li>
<li>Easy to integrate</li>
<li>Fully customizable via CSS</li>
<li>Works with all modern browsers</li>
</ol>
<h3>How to Use</h3>
<p>1.) <a href="http://www.ajaxblender.com/script-sources/xbreadcrumbs/download/xbreadcrumbs.zip">Download</a> xBreadcrumbs script. The package already contains jQuery framework.<br />
2.) Add the following code to your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag to connect jQuery framework, xBreadcrumbs plugin and CSS. <em>(Make sure paths to files are correct.)</em></p>
<pre class="html">
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../jquery-1.3.2.min.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;../xbreadcrumbs.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlOtherTag">&lt;link rel=<span class="htmlAttributeValue">&quot;stylesheet&quot;</span> href=<span class="htmlAttributeValue">&quot;../xbreadcrumbs.css&quot;</span> /&gt;</span>
</pre>
<p>3.) Create your breadcrumbs structure inside of your <strong>&lt;body&gt;…&lt;/body&gt;</strong> tag.</p>
<pre class="html">
<span class="htmlOtherTag">&lt;ul id=<span class="htmlAttributeValue">&quot;breadcrumbs&quot;</span>&gt;</span>
     <span class="htmlOtherTag">&lt;li&gt;</span>
          <span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Home<span class="htmlAnchorTag">&lt;/a&gt;</span>
          <span class="htmlOtherTag">&lt;ul&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Servers<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Desktop Computers<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Laptops<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
          <span class="htmlOtherTag">&lt;/ul&gt;</span>
     <span class="htmlOtherTag">&lt;/li&gt;</span>
     <span class="htmlOtherTag">&lt;li&gt;</span>
          <span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Laptops<span class="htmlAnchorTag">&lt;/a&gt;</span>
          <span class="htmlOtherTag">&lt;ul&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Dell<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>HP<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Apple<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>IBM<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
          <span class="htmlOtherTag">&lt;/ul&gt;</span>
     <span class="htmlOtherTag">&lt;/li&gt;</span>
     <span class="htmlOtherTag">&lt;li&gt;</span>
          <span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Apple<span class="htmlAnchorTag">&lt;/a&gt;</span>
          <span class="htmlOtherTag">&lt;ul&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>MacBook Pro<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>MacBook Air<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
          <span class="htmlOtherTag">&lt;/ul&gt;</span>
     <span class="htmlOtherTag">&lt;/li&gt;</span>
     <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>MacBook Air<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
<span class="htmlOtherTag">&lt;/ul&gt;</span>
</pre>
<p>4.) Use the following code (preferably inside of your <strong>&lt;head&gt;&#8230;&lt;/head&gt;</strong> tag) to initialize xBreadcrumbs.</p>
<pre class="php">
<span class="phpOperator">&lt;</span>script type=<span class="phpString">"text/javascript"</span><span class="phpOperator">&gt;</span>
     $<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
          $<span class="phpOperator">(</span><span class="phpString">'#breadcrumbs'</span><span class="phpOperator">)</span>.xBreadcrumbs<span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
     <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">&lt;</span>/script<span class="phpOperator">&gt;</span>
</pre>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<h3>Options</h3>
<table class="options" border="0">
<tbody>
<tr>
<th>Configuration Option</th>
<th>Default Value</th>
<th>Description</th>
</tr>
<tr>
<td><strong>showSpeed</strong></td>
<td>fast</td>
<td>Numeric value in milliseconds or jQuery string value (&#8217;fast&#8217;, &#8216;normal&#8217;, &#8217;slow&#8217;). The parameter sets speed of sub level to appear. If empty then no transition is used.</td>
</tr>
<tr class="odd">
<td><strong>hideSpeed</strong></td>
<td><em>empty</em></td>
<td>Numeric value in milliseconds or jQuery string value (&#8217;fast&#8217;, &#8216;normal&#8217;, &#8217;slow&#8217;). The parameter sets speed of sub level to hide. If empty then no transition is used.</td>
</tr>
<tr>
<td><strong>collapsible<br />
</strong></td>
<td>false</td>
<td>Parameters enables collapsing of upper levels.</td>
</tr>
<tr class="odd">
<td><strong>collapsedWidth<br />
</strong></td>
<td>10 <em>(pixels)</em></td>
<td>Width of collapsed level.</td>
</tr>
</tbody>
</table>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1038&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/xbreadcrumbs.html/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
	</channel>
</rss>

