<?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>Web Design Ledger &#187; jquery</title>
	<atom:link href="http://webdesignledger.com/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://webdesignledger.com</link>
	<description>A Publication for Web Designers</description>
	<lastBuildDate>Wed, 23 May 2012 12:12:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>9 jQuery Mistakes you Shouldn&#8217;t Commit</title>
		<link>http://webdesignledger.com/tips/9-jquery-mistakes-you-shouldnt-commit</link>
		<comments>http://webdesignledger.com/tips/9-jquery-mistakes-you-shouldnt-commit#comments</comments>
		<pubDate>Thu, 19 Apr 2012 12:00:57 +0000</pubDate>
		<dc:creator>Rochester Oliveira</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=14743</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=14743&c=937801277' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=14743&c=937801277' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />jQuery is so easy to use that sometimes we just forget that it’s not CSS. While using CSS, we don&#8217;t have to give much thought to performance, because it’s so fast that it&#8217;s not worth the effort to optimize it. But when it comes to the real world, jQuery can drive developers crazy with performance [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=14743&c=48786413' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=14743&c=48786413' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>jQuery is so easy to use that sometimes we just forget that it’s not CSS. While using CSS, we don&#8217;t have to give much thought to performance, because it’s so fast that it&#8217;s not worth the effort to optimize it. But when it comes to the real world, jQuery can drive developers crazy with performance issues. Sometimes you lose precious milliseconds without even noticing it. Also, it’s so easy to forget about some functions and we keep using the old (and not-so-good) ones.<span id="more-14743"></span></p>
<p>Let’s take a look at a few of the most-common-and-easiest-to-fix mistakes while using jQuery in your projects.</p>
<p><img src="http://webdesignledger.com/wp-content/uploads/2012/04/jquery.jpg" alt="" title="jquery" width="580" height="300" class="aligncenter size-full wp-image-14753" /></p>
<h3>1. You aren’t using the latest jQuery version</h3>
<p>Each version update means higher performance and several bug fixes. The current stable release is 1.7.2, and I’m pretty sure you know about plenty of sites developed using 1.6 and below. Ok, ok, you can’t just update every old site for every jQuery update (unless your client is paying you to do so) but you should at least start using it for your new projects. So, forget about this local copy and just grab the latest release every time you start a new project.</p>
<h3>2. You aren’t using a CDN-hosted copy of jQuery</h3>
<p>How many unique visitors you`ve got last month? I bet the number is still under 1 billion, right?<br />
So you’d better use Google’s copy of jQuery instead of yours. If your user still has the cached file of Google’s website (or from many other sites that uses its CDN) his browser will just get the cached version, improving a lot your website’s performance. You can use it by copying &amp; pasting this HTML:</p>
<pre>
<code>&lt;script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"&gt;&lt;/script&gt;</code>
</pre>
<h3>3. You aren’t using a fallback for CDN version</h3>
<p>I know I said Google is awesome and stuff, but they can fail. So, every time you rely upon external sources, make sure you have a local fallback. I’ve seen this snippet in the HTML5 boilerplate source code and just found it amazing. You should use it too:</p>
<pre>
<code>&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"&gt;&lt;/script&gt;
&lt;script&gt;window.jQuery || document.write('&lt;script src="js/libs/jquery-1.7.2.min.js"&gt;&lt;\/script&gt;')&lt;/script&gt;</code>
</pre>
<h3>4. You aren’t chaining stuff</h3>
<p>While doing common operations, you don’t need to call the element every time you want to manipulate it. If you’re doing several manipulations in a row, use chaining, so jQuery won’t need to get the element twice.</p>
<p>Instead of this:</p>
<pre>
<code>$(“#mydiv”).hide();
$(“#mydiv”).css(“padding-left”, “50px”);</code>
</pre>
<p>Use this:</p>
<pre>
<code>$(“#mydiv”).hide().css(“padding-left”, “50px”);</code>
</pre>
<h3>5. You aren’t caching stuff</h3>
<p>This is one of the most important performance tips. If you’ll call an element at least twice, you should cache it. Caching is just saving the jQuery selector in a variable, so when you need to call it again you’ll just reference the variable and jQuery won’t need to search the whole DOM tree again to find your element.</p>
<pre>
<code>/* you can use it this way because almost every jQuery function returns
the element, so $mydiv will be equal to $(“#mydiv”); also it’s good to
use the $mydiv so you know it’s a jQuery caching var */

var $mydiv = $(“#mydiv”).hide();
[.. lot of cool stuff going on here …]
$mydiv.show();</code>
</pre>
<h3>6. You aren’t using pure js</h3>
<p>Specially for attributes modification, we have several built in methods to get stuff done with pure javascript. You can even &#8220;convert&#8221; jQuery objects back to DOM nodes to use them with simpler methods, like this:</p>
<pre>
<code>$mydiv[0].setAttribute('class', 'awesome'); //you can convert jQuery objects to DOM nodes using $jqObj[0]</code>
</pre>
<h3>7. You aren’t checking plugins before including in your site</h3>
<p>You know, jQuery is not the hardest thing in the world to code. But good JS (and jQuery), that is pretty hard. The bad news is that while you aren’t a good programmer, you’ll have to rely on trial and error to find out what is good and what isn’t. A few points you must be aware of while including a plugin in your project:</p>
<ol>
<li>File Size (the easiest to check!) &#8211; if a tooltip plugin is bigger than jQuery source, something is really wrong;</li>
<li>Performance &#8211; You can try it with firebug and others. They give you easy to understand charts to you’ll know when something is out of place;</li>
<li>Cross-browsing &#8211; Test, at least on IE7, but Chrome, Firefox, Safari and Opera are good ones to try also</li>
<li>Mobile &#8211; Don’t forget that everything is getting mobile. See if the plugin works, or at least doesn’t crash your mobile browser</li>
</ol>
<h3>8. You aren’t open to remove jQuery</h3>
<p>Sometimes it’s just better to remove it and use simple ol’ CSS. Actually if you want, for instance, an opacity hover, or transition can be done with CSS along with good browser support. And there’s no way jQuery can beat plain CSS.</p>
<h3>9. You are using jQuery for server side tasks</h3>
<p>I know that masking and validating are good, but don’t rely just on jQuery for those. You need to recheck everything on the server side. That is especially important if you are thinking about using AJAX. Also, make sure everything will work with JS disabled.</p>
<p><strong>So, it’s your turn!</strong></p>
<p>Do you have anything you think should be on this list? Share your thoughts!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/tips/9-jquery-mistakes-you-shouldnt-commit/feed</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>8 Responsive jQuery Slider Plugins</title>
		<link>http://webdesignledger.com/resources/8-responsive-jquery-slider-plugins</link>
		<comments>http://webdesignledger.com/resources/8-responsive-jquery-slider-plugins#comments</comments>
		<pubDate>Tue, 10 Jan 2012 05:55:04 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=13234</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=13234&c=466264371' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=13234&c=466264371' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />Whether you&#8217;re already a pro at creating responsive web sites or your just learning what it&#8217;s all about, it&#8217;s good to have some scripts handy that you can easily integrate into your site. We all know how popular image and content sliders are now, and for good reason. So we decided to round up some [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=13234&c=943494228' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=13234&c=943494228' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>Whether you&#8217;re already a pro at creating responsive web sites or your just learning what it&#8217;s all about, it&#8217;s good to have some scripts handy that you can easily integrate into your site. We all know how popular image and content sliders are now, and for good reason. So we decided to round up some jQuery slider plugins that are already responsive &#8211; meaning they will adapt to the size of their container.<span id="more-13234"></span></p>
<h3><a href="http://flex.madebymufffin.com/" target="_blank">Flexslider</a></h3>
<p><a href="http://flex.madebymufffin.com/"><img class="size-full wp-image-3448 alignleft" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery01.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<p>FlexSlider is an awesome, fully responsive jQuery slider plugin. In other words, it resizes to fit the screen on which it is displayed, and looks good doing it. We love this slider so much that we use it in our responsive WordPress themes at <a title="Premium WordPress Themes" href="http://themetrust.com" target="_blank">Theme Trust</a>.</p>
<h3><a href="http://marktyrrell.com/labs/blueberry/" target="_blank">Blueberry</a></h3>
<p><a href="http://marktyrrell.com/labs/blueberry/"><img class="size-full wp-image-3448 alignleft" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery02.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<p>Blueberry is an experimental opensource jQuery image slider plugin which has been written specifically to work with fluid/responsive web layouts.</p>
<h3><a href="http://unoslider.heroku.com/" target="_blank">unoslider</a></h3>
<p><a href="http://unoslider.heroku.com/"><img class="size-full wp-image-3448 alignleft" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery03.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<p>unoslider is a fully responsive, touch enabled, mobile optimized jQuery slider plugin.</p>
<h3><a href="http://johnpolacek.github.com/ResponsiveThumbnailGallery/" target="_blank">Responsive Thumbnail Gallery Plugin</a></h3>
<p><a href="http://johnpolacek.github.com/ResponsiveThumbnailGallery/"><img class="size-full wp-image-13249" title="slider_ducks" src="http://webdesignledger.com/wp-content/uploads/2012/01/slider_ducks.jpg" alt="" width="580" height="339" /></a></p>
<p>jQuery Plugin for creating image galleries that scale to fit their container.</p>
<h3><a href="http://brice.lechatellier.com/code-design/wmuslider/" target="_blank">wmuSlider</a></h3>
<p><a href="http://brice.lechatellier.com/code-design/wmuslider/"><img class="size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery06.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<h3><a href="http://tympanus.net/codrops/2011/09/12/elastislide-responsive-carousel/" target="_blank">Elastislide – A Responsive jQuery Carousel Plugin</a></h3>
<p><a href="http://tympanus.net/codrops/2011/09/12/elastislide-responsive-carousel/"><img class="size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery07.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<p>Elastislide uses the jQuery Touchwipe Plugin which allows you to obtain the wipe event on an iPhone, iPad or iPod Touch.</p>
<h3><a href="http://tympanus.net/codrops/2011/09/20/responsive-image-gallery/" target="_blank">Responsive Image Gallery with Thumbnail Carousel</a></h3>
<p><a href="http://tympanus.net/codrops/2011/09/20/responsive-image-gallery/"><img class="size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery08.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<p>A jQuery image gallery with a thumbnail carousel. You can download it <a href=" http://tympanus.net/Tutorials/ResponsiveImageGallery/ResponsiveImageGallery.zip">here</a>.</p>
<h3><a href="http://tympanus.net/codrops/2011/11/21/elastic-image-slideshow-with-thumbnail-preview/" target="_blank">Elastic Image Slideshow with Thumbnail Preview</a></h3>
<p><a href="http://tympanus.net/codrops/2011/11/21/elastic-image-slideshow-with-thumbnail-preview/"><img class="size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2012/01/jQuery09.jpg" alt="Responsive jQuery Slider Plugins" /></a></p>
<p>Create an elastic slideshow with a thumbnail preview.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/resources/8-responsive-jquery-slider-plugins/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>10 jQuery Plugins to Enhance your User Interfaces</title>
		<link>http://webdesignledger.com/tools/10-jquery-plugins-to-enhance-your-user-interfaces</link>
		<comments>http://webdesignledger.com/tools/10-jquery-plugins-to-enhance-your-user-interfaces#comments</comments>
		<pubDate>Tue, 20 Sep 2011 04:39:11 +0000</pubDate>
		<dc:creator>Sam Deering</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=11578</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=11578&c=990360715' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=11578&c=990360715' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />With a recently estimated over 20 million websites currently using jQuery it is essential to know what jQuery plugins there are out there in order to stay with the web design trend. Today, we&#8217;ll put some focus on some popular jQuery user interface plugins to help you enhance your current website to stay ahead of [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=11578&c=2117985836' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=11578&c=2117985836' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>With a recently estimated over 20 million websites currently using jQuery it is essential to know what jQuery plugins there are out there in order to stay with the web design trend. Today, we&#8217;ll put some focus on some popular jQuery user interface plugins to help you enhance your current website to stay ahead of the crowd!<span id="more-11578"></span></p>
<h3>jQuery Image Parallax</h3>
<p>Ever wanted an animated header but refused to put Flash on your website? Well, there is now a jQuery plugin which allows you to do just that with, you guessed it &#8211; zero Flash! It creates an overlay of images and animates them when your mouse hovers the header. Get that WOW factor with jQuery Parallax.</p>
<p><a href="http://www.jquery4u.com/demos/jquery4u-parallax-demo/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-image-parallax.jpg" alt="" /></a></p>
<h3>jQuery News Ticker</h3>
<p>Ever wanted to display the latest news on your website in a sort of &#8220;headline news&#8221; way. Well, this jQuery News Ticker plugin will not only display your latest news it can also be loaded in from an RSS feed. This would allow you to display news from any website which has an RSS feed. Pretty cool!</p>
<p><a href="http://www.jquerynewsticker.com/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-news-ticker.jpg" alt="" /></a></p>
<h3>jQuery Letterings</h3>
<p>This awesome little jQuery plugin creates eye catching fonts, typical called web typography! It&#8217;s lightweight, easy to use and can really transform that ugly looking heading you&#8217;ve always hated into something quite spectacular. There is also a CSS3 fall back for those people who might (for some unknown reason) have JavaScript disabled.</p>
<p><a href="http://daverupert.com/2010/09/lettering-js/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-letterings.jpg" alt="" /></a></p>
<h3>jQuery Stylesheet Switcher</h3>
<p>Designing a web page and can&#8217;t decide what styles to choose for a client? Well, this little jQuery plugin lets you switch stylesheets instantly with just a click of a link! Now you can switch back and forth when showing choosing designs with clients.</p>
<p><a href="http://www.kelvinluck.com/assets/jquery/styleswitch/toggle.html" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-stylesheet-switcher.jpg" alt="" /></a></p>
<h3>jQuery Page Peel</h3>
<p>This little jQuery plugin which does exactly what it says on the tin &#8211; creates a page peel! This is a little page animation which sits at the top right hand of the screen and when the mouse hovers it the page &#8220;peels&#8221; down and reveals the content behind it. It could be used to display a popular area or feature of your website but is most commonly known these days to display advertisements. Let&#8217;s face it the page peel grabs your attention straight away!</p>
<p><a href="http://www.smple.com/pagePeel/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-page-peel.jpg" alt="" /></a></p>
<h3>jQuery Simple Modal</h3>
<p>Lets face it, alert boxes which display things like &#8220;Wrong password&#8221; or &#8220;Saved.&#8221; are outdated! Well fortunately these days are over and there a few good jQuery plugins out there that manage modal boxes. These modal boxes are essentially windows which can be style customized to suit your website! The simple modal is my favorite as it&#8217;s so easy to implement and manage.</p>
<p><a href="http://www.ericmmartin.com/projects/simplemodal/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-simple-modal.jpg" alt="" /></a></p>
<h3>jQuery Scroll Slider</h3>
<p>Ever wanted to grab someones attention when they are reaching the end of a web page, essentially to keep them from closing it? Well, with the jQuery Related web pages Scroll Slider you can do just that! As the visitor reaches the end of the page a sliding animation with slides out from the bottom right of the screen! Great Stuff!</p>
<p><a href="http://jquery4u.com/demos/jsliderelatedpages/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-scroll-slider.jpg" alt="" /></a></p>
<h3>jQuery Position Absolute</h3>
<p>This nifty little jQuery plugin can make products fit on screen creating an interesting way of displaying them so that they are all visible. Now your days of reducing the size of your images to small thumbnails are over with this fantastic jQuery plugin.</p>
<p><a href="http://www.position-absolute.com/articles/feature-your-products-with-jquery/" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-position-absolute.jpg" alt="" /></a></p>
<h3>jQuery Easy UI</h3>
<p>This awesome jQuery plugin allows you to create amazing professional looking websites with ease. There are a whole range of demos of the different types of components to get you started. I have noticed it can be particularly useful for displaying data in tables using a DataGrid layout. It is very easy and yet so powerful!</p>
<p><a href="http://www.jeasyui.com/demo/index.php" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-easy-ui.jpg" alt="" /></a></p>
<h3>jQuery iFrame/textArea Resizer</h3>
<p>OK so you are using an iFrame to display a web page, form or images on your web page. iFrames usually have a fixed height and are a pain to resize across the different browsers. This little jQuery plugin allows you to resize iFrames and textAreas on your page with a nice grip bar, hassle free!</p>
<p><a href="http://www.itsavesyou.com/TextArea_Resizer_example.htm" rel="nofollow" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/09/jquery-iframe-resizer.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/tools/10-jquery-plugins-to-enhance-your-user-interfaces/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Basic Tips for Getting Started with jQuery Development</title>
		<link>http://webdesignledger.com/tips/basic-tips-for-getting-started-with-jquery-development</link>
		<comments>http://webdesignledger.com/tips/basic-tips-for-getting-started-with-jquery-development#comments</comments>
		<pubDate>Thu, 14 Jul 2011 05:55:42 +0000</pubDate>
		<dc:creator>Jake Rocheleau</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=10451</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=10451&c=1264804168' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=10451&c=1264804168' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />The jQuery programming library has dramatically changed the way we work online. Web developers are able to prototype animations and backend effects much quicker with fewer lines of code. This brings to the table a profound collection of functions which you can read about here. It doesn&#8217;t take long to figure out jQuery syntax, especially [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=10451&c=119290111' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=10451&c=119290111' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>The jQuery programming library has dramatically changed the way we work online. Web developers are able to prototype animations and backend effects much quicker with fewer lines of code. This brings to the table a profound collection of functions <a href="http://docs.jquery.com/Main_Page">which you can read about here</a>. It doesn&#8217;t take long to figure out jQuery syntax, especially if you are fairly well versed using JavaScript.<span id="more-10451"></span></p>
<p>But if you are new to the language it shouldn&#8217;t take long to get started. I&#8217;ve added a collection of great tips below for newbie programmers. If you are interested in coding frontend web applications then I highly recommend playing around in jQuery. Even understanding the most basic terminology can push you towards a much greater understanding of DOM manipulation and effects.</p>
<h3>Setting Up your Documents</h3>
<p>The first thing you&#8217;ll want to do is include the most recent version of jQuery. This is a no brainer as it&#8217;ll pull the source library into all your pages. Head over to <a href="http://jquery.com">jquery.com</a> and check what their most recent version is. You have the option of downloading the file directly and packaging it with your web app. Or alternatively Google hosts all of the <a href="http://code.google.com/apis/libraries/devguide.html#jquery">jQuery versions</a> live via their servers.</p>
<p><img class="aligncenter size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2011/07/dice-blocks-building.jpg" alt="jQuery" /></p>
<p>If you include an external document from Google this saves you time on each pageload. Granted it won&#8217;t be much, but there are many advantages to this technique. Now we should start by checking if the document has loaded properly. This could be done in JavaScript, but jQuery offers advanced selectors so we can achieve this much quicker. Below is some example code:</p>
<pre>$(document).ready(function() {
	//do stuff
});</pre>
<p>The above block is using the jQuery <code>$()</code> selector syntax. Whatever object you place inside the parentheses becomes a focal point for all the functional code written afterwards. In this case we&#8217;re targeting our webpage document object. Inside the core function we could include any number of methods to preform directly on page load.</p>
<h3>Creating Functionality</h3>
<p>If you are struggling to understand how constructors are used to target elements, spend a bit of time browsing the <a href="http://docs.jquery.com/Tutorials">jQuery tutorials</a> section. Your selector is the most important part to any jQuery call, and you&#8217;ll be working with them in nearly every script.</p>
<p><img class="aligncenter size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2011/07/web-developers-loft.jpg" alt="jQuery" /></p>
<p>But if we would like to create some basic functionality let&#8217;s build a small alert box upon clicking a link. This can be done in a few ways, and it really depends on your requirements. We could give the link a class or ID which can then become a target in jQuery. Remember that IDs are unique throughout any webpage and begin with a hash symbol(#) while classes can be used multiple times and are preceded with a period(.)</p>
<p>Below is some crude HTML and jQuery code to display our alert box. It&#8217;s worth noting that we are using two script tags altogether. The first is added within our heading to include the most recent jQuery library code. The second scripting tag will be written in the HTML to make things easier.</p>
<pre>&lt;body&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function() {
	$("a").click(function(e) {
		e.preventDefault();
		alert("hey there!");
	});
});
&lt;/script&gt;</pre>
<p>You can see I&#8217;ve added the code directly after our opening body tag. This isn&#8217;t required, as jQuery scripting is actually loaded before the full document. This is why when our code begins we&#8217;re selecting the entire document and passing the <code>ready()</code> function to check if it is finished loading. This structure is very basic for jQuery programming, so get used to this template.</p>
<h3>Breaking Down the Code</h3>
<p>This is a simple block, so we can expand fairly quickly. After our document has finished loading we call a new selector. This attaches a click event handler onto all the <strong>a links</strong> in your page. It doesn&#8217;t matter what their href value is set to, either way the code inside your function will be executed.</p>
<p>But if you do have links which lead externally the first bit of code prevents such behavior. Passing in a variable to your function (in this case we chose <strong>e</strong>) can store the event taken from any object. In this scenario we&#8217;re storing the click event from any hyperlink on your page. But the <code>preventDefault()</code> method will stop any link from loading further&#8230; very handy to save in your code snippets for later on.</p>
<p><img class="aligncenter size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2011/07/learning-jquery-selectors.jpg" alt="jQuery" /></p>
<p>Finally we call our <code>alert()</code> function with a small greeting. To test this out simply add a new link into your HTML document. Make sure you&#8217;ve also added the JavaScript code above and attached the latest jQuery library from Google Code APIs. Now this example is fairly practical as the code is reusable for other click events, too. Below we will delve into one more sector of programming in jQuery.</p>
<h3>Creating Fade-ins and Fade-outs</h3>
<p>The jQuery scripting library is best known for so many things. Document manipulation, DOM programming, applying text effects, and especially dynamic animations. Some of the simplest effects to understand are fades. These can reduce or increase the opacity of any given HTML element on your page.</p>
<p>Below I&#8217;ve worked out a simple fading effect which applies to specific types of paragraphs. These include some fancy styling to help them stand apart from the rest of your page. Of course, these are only implemented for this tutorial, so you should change the classes to suit your website.</p>
<pre>&lt;style type="text/css"&gt;
p.fading { font-family: Arial, Helvetica, sans-serif; background: #ccc; padding: 3px 7px; }
&lt;/style&gt;</pre>
<p>You can add this style anywhere or even include them into a separate .css file. We will be targeting paragraph elements with the class &#8220;fading&#8221;. I&#8217;ve just set the font to Arial, added some padding, and updated the background color to a light gray. We could also set opacity from here, but it&#8217;s easier to stick all that in our new jQuery code.</p>
<p><img class="aligncenter size-full wp-image-3448" src="http://webdesignledger.com/wp-content/uploads/2011/07/tokyo-evening-sunset.jpg" alt="jQuery" /></p>
<p>If you remember before we opened a <code>$(document).ready()</code> event for our link alert box. It&#8217;s a simple matter to add in some new code within this call, still inside our <code>ready()</code> function. I know this can be a bit confusing. Thus instead of including just the new code, I&#8217;ve added the whole block so you can see what changes have been applied.</p>
<pre>&lt;script type="text/javascript"&gt;
$(document).ready(function() {
	$("a").click(function(e) {
		e.preventDefault();
		alert("hey there!");
	});

	/* set opacity 30% */
	$("p.fading").css("opacity","0.3");
	$("p.fading").hover(function() {
		$(this).stop().animate({
			opacity: 1.0
		}, "slow");
	}, function () {
		$(this).stop().animate({
		opacity: 0.3
		}, "slow");
	});
});
&lt;/script&gt;</pre>
<p>So right after our click event handler I&#8217;ve added two separate bits of code. The first sets all paragraphs with the class of &#8220;fading&#8221; to 30% opacity. This number can be changed in accordance to the decimal values, such as 0.5 for 50%.</p>
<p>Afterwards I&#8217;ve set a similar method to the <code>.click()</code> handler which is <strong>hover()</strong>. Anytime you hover over a paragraph element with the class of <strong>fading</strong> our function will be called. What&#8217;s special about <a href="http://api.jquery.com/hover/">jQuery hover</a> is that we can provide actions for both on hover and on release. This is why we have two defined functions, one setting full opacity and the other resetting back to 30%.</p>
<p>Try adding the code above into your same document from before. Be sure to add in a small paragraph with the class &#8220;fading&#8221;, and add some filler text. It&#8217;s absolutely amazing the amount of functionality which can be built in jQuery, all in a matter of just a few minutes.</p>
<h3>Conclusion</h3>
<p>This has been a brief introduction into some of the methods and syntax behind jQuery. This powerful programming language has changed the way we use the Internet and design modern websites. User interfaces can be drafted in just a few hours with full animations and wonderful effects.</p>
<p>The other great piece of jQuery is full extensibility. Developers have created and released <a href="http://webdesignledger.com/resources/10-useful-jquery-plugins">a lot of plugins</a> for free, all powered on the jQuery library. Check out a few to see if any can fill a requirement for your websites. Functionality is key, but without proper design and user support your website will become bloated and fall apart. Use jQuery sparingly in your code and with the right balance you can start building incredible interfaces at the drop of a hat.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/tips/basic-tips-for-getting-started-with-jquery-development/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>8 Fresh and Useful jQuery Plugins</title>
		<link>http://webdesignledger.com/resources/8-fresh-and-useful-jquery-plugins</link>
		<comments>http://webdesignledger.com/resources/8-fresh-and-useful-jquery-plugins#comments</comments>
		<pubDate>Fri, 27 May 2011 04:22:34 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=9732</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9732&c=139651499' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9732&c=139651499' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />jQuery helps us web designers and developers do some amazing things, and plugins make it almost too easy. That&#8217;s why it&#8217;s an obsession of mine to find new ones. I&#8217;ve been on the lookout for the past couple of weeks, and I&#8217;ve collected some good ones. Here are 8 Fresh and Useful jQuery Plugins. Isotope [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9732&c=1504793253' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9732&c=1504793253' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>jQuery helps us web designers and developers do some amazing things, and plugins make it almost too easy. That&#8217;s why it&#8217;s an obsession of mine to find new ones. I&#8217;ve been on the lookout for the past couple of weeks, and I&#8217;ve collected some good ones. Here are <strong>8 Fresh and Useful jQuery Plugins</strong>.<span id="more-9732"></span></p>
<h3><a href="http://isotope.metafizzy.co/">Isotope</a></h3>
<p><a href="http://isotope.metafizzy.co/"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_1.jpg" alt="jquery" /></a></p>
<p>Isotype is a jQuery plugin for creating dynamic and intelligent layouts. It also lets you reveal &#038; hide items with filtering, re–order items with sorting &#8211; all done with captivating animations.</p>
<h3><a href="http://jquewy.com/">jQuewy</a></h3>
<p><a href="http://jquewy.com/"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_6.jpg" alt="jquery" /></a></p>
<p>jQuewy is a simple, efficient, and lightweight loader for javascript functions, with a powerful CDN-ready backend.</p>
<h3><a href="http://christophercliff.github.com/sausage/">Sausage</a></h3>
<p><a href="http://christophercliff.github.com/sausage/"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_2.jpg" alt="jquery" /></a></p>
<p>Sausage is a jQuery UI widget for contextual pagination. It complements long or infinite-scrolling pages by keeping the user informed of her location within the document.</p>
<h3><a href="http://www.dailycoding.com/Posts/imagelens__a_jquery_plugin_for_lens_effect_image_zooming.aspx">ImageLens</a></h3>
<p><a href="http://www.dailycoding.com/Posts/imagelens__a_jquery_plugin_for_lens_effect_image_zooming.aspx"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_3.jpg" alt="jquery" /></a></p>
<p>ImageLens is a jQuery plug-in to add lens style zooming effect to an image.</p>
<h3><a href="http://haineault.com/media/examples/jquery-utils/demo/ui-timepickr.html">jquery.timepickr.js</a></h3>
<p><a href="http://haineault.com/media/examples/jquery-utils/demo/ui-timepickr.html"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_4.jpg" alt="jquery" /></a></p>
<p>This jQuery plugin is an experimental approach to enhancing web time picking. </p>
<h3><a href="http://www.bigspaceship.com/blog/labs/jquery-plugin-codeexplorer-v01/">CodeExplorer</a></h3>
<p><a href="http://www.bigspaceship.com/blog/labs/jquery-plugin-codeexplorer-v01/"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_5.jpg" alt="jquery" /></a></p>
<p>This jQuery plugin produces an online code explorer. It allows for different themes, multiple instances, fullscreen mode, github connections, and much more.</p>
<h3><a href="http://jeromeetienne.github.com/jquery-mobile-960/">960 Grid on jQuery-Mobile</a></h3>
<p><a href="http://jeromeetienne.github.com/jquery-mobile-960/"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_7.jpg" alt="jquery" /></a></p>
<p>960 Grid on jQuery-Mobile is a port of 960 grid to jquery mobile. It merge the flexibility of 960.gs, and the ease of jquery mobile. It aims to bring more flexibility to jquery-mobile layout and thus make it easier to use on tablets. </p>
<h3><a href="http://www.myjqueryplugins.com/jMenu">jMenu</a></h3>
<p><a href="http://www.myjqueryplugins.com/jMenu"><img src="http://webdesignledger.com/wp-content/uploads/2011/05/jquery_new_8.jpg" alt="jquery" /></a></p>
<p>jMenu is a jQuery plugin that enables us to create horizontal navigations with unlimited sub-menus.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/resources/8-fresh-and-useful-jquery-plugins/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>10 Useful jQuery Plugins</title>
		<link>http://webdesignledger.com/resources/10-useful-jquery-plugins</link>
		<comments>http://webdesignledger.com/resources/10-useful-jquery-plugins#comments</comments>
		<pubDate>Fri, 25 Mar 2011 04:54:11 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=9060</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9060&c=1578282928' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9060&c=1578282928' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />It seems that jQuery plugins are constantly being released, and it&#8217;s no surprise since it&#8217;s insanely popular, and for good reason. The only problem is being able to sort through them all to find the good ones. That&#8217;s why we&#8217;re always on the lookout, and we&#8217;ve found some good ones for you. Here are 10 [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9060&c=52566474' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=9060&c=52566474' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>It seems that jQuery plugins are constantly being released, and it&#8217;s no surprise since it&#8217;s insanely popular, and for good reason. The only problem is being able to sort through them all to find the good ones. That&#8217;s why we&#8217;re always on the lookout, and we&#8217;ve found some good ones for you. Here are 10 fresh jQuery plugins that you should find useful.<span id="more-9060"></span></p>
<h3><a href="http://arborjs.org/" target="_blank">arbor.js</a></h3>
<p><a href="http://arborjs.org/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_1.jpg" alt="jquery plugins" /></a></p>
<p>Arbor is a graph visualization library built with web workers and jQuery. Rather than trying to be an all-encompassing framework, arbor provides an efficient, force-directed layout algorithm plus abstractions for graph organization and screen refresh handling.</p>
<h3><a href="http://playground.mobily.pl/jquery/mobily-map.html" target="_blank">Mobily Map</a></h3>
<p><a href="http://playground.mobily.pl/jquery/mobily-map.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_2.jpg" alt="jquery plugins" /></a></p>
<p>MobilyMap is a jQuery plugin (7KB) that can create a Google Maps-like, draggable interface from any image.</p>
<h3><a href="http://www.awkwardgroup.com/sandbox/awkward-viewline-a-jquery-plugin/" target="_blank">Awkward Viewline</a></h3>
<p><a href="http://www.awkwardgroup.com/sandbox/awkward-viewline-a-jquery-plugin/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_10.jpg" alt="jquery plugins" /></a></p>
<p>This is a simple plugin for displaying any type of media on a straight line. As an example it can be used for displaying a product line over the browsers entire width.</p>
<h3><a href="http://nicolahibbert.com/demo/liteAccordion/" target="_blank">liteAccordion</a></h3>
<p><a href="http://nicolahibbert.com/demo/liteAccordion/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_3.jpg" alt="jquery plugins" /></a></p>
<p>liteAccordion is a horizontal accordion plugin that only weighs 4.5kb, and the themes don&#8217;t use any background images.</p>
<h3><a href="http://redeyeoperations.com/plugins/zoomy/" target="_blank">Zoomy</a></h3>
<p><a href="http://redeyeoperations.com/plugins/zoomy/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_4.jpg" alt="jquery plugins" /></a></p>
<p>Zoomy is a quick and easy plugin that will zoom into a picture. You only need two copies of one image first the display image and then the zoom image.</p>
<h3><a href="http://imakewebthings.github.com/jquery-waypoints/" target="_blank">Waypoints</a></h3>
<p><a href="http://imakewebthings.github.com/jquery-waypoints/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_5.jpg" alt="jquery plugins" /></a></p>
<p>Waypoints is a small jQuery plugin that makes it easy to execute a function whenever you scroll to an element.</p>
<h3><a href="http://www.zurb.com/playground/reveal-modal-plugin" target="_blank">Reveal</a></h3>
<p><a href="http://www.zurb.com/playground/reveal-modal-plugin" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_6.jpg" alt="jquery plugins" /></a></p>
<p>Reveal is a lightweight plugin that lets you easily create modal windows.</p>
<h3><a href="http://www.kalyani.com/2010/10/subway-map-visualization-jquery-plugin/" target="_blank">Subway Map Visualization</a></h3>
<p><a href="http://www.kalyani.com/2010/10/subway-map-visualization-jquery-plugin/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_7.jpg" alt="jquery plugins" /></a></p>
<p>This plugin gives you a way to display data by generating HTML in the form of a subway map.</p>
<h3><a href="http://farukat.es/journal/2011/02/514-new-creation-jquery-runloop-plugin" target="_blank">jQuery Runloop Plugin</a></h3>
<p><a href="http://farukat.es/journal/2011/02/514-new-creation-jquery-runloop-plugin" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_8.jpg" alt="jquery plugins" /></a></p>
<p>With jQuery Runloop, you can create your own small runloop with keyframes at your own choosing, each with code to execute. You can put whatever code you want in each keyframe, rearrange keyframes easily, and use reusable maps of code and/or animations to share between runloops.</p>
<h3><a href="http://neteye.github.com/activity-indicator.html" target="_blank">Activity Indicator</a></h3>
<p><a href="http://neteye.github.com/activity-indicator.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/03/fresh_jquery_9.jpg" alt="jquery plugins" /></a></p>
<p>Activity Indicator is a jQuery plugin that renders a translucent activity indicator (spinner) using SVG or VML.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/resources/10-useful-jquery-plugins/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>10 Useful jQuery Plugins for Images</title>
		<link>http://webdesignledger.com/freebies/10-useful-jquery-plugins-for-images</link>
		<comments>http://webdesignledger.com/freebies/10-useful-jquery-plugins-for-images#comments</comments>
		<pubDate>Thu, 20 Jan 2011 05:16:03 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=8223</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=8223&c=658550579' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=8223&c=658550579' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />We all know and love jQuery for its flexibility and many uses. But some of the most impressive jQuery applications are those that involve images. It really can allow you to do some useful stuff and even add a &#8220;wow&#8221; factor to your project. So here we&#8217;ve rounded up 10 jQuery plugins to help you [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=8223&c=2085431531' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=8223&c=2085431531' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>We all know and love jQuery for its flexibility and many uses. But some of the most impressive jQuery applications are those that involve images. It really can allow you to do some useful stuff and even add a &#8220;wow&#8221; factor to your project. So here we&#8217;ve rounded up 10 jQuery plugins to help you display images in your next project.<span id="more-8223"></span></p>
<h3><a href="http://www.slidesjs.com/" target="_blank">Slides</a></h3>
<p><a href="http://www.slidesjs.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_2.jpg" alt="jquery image plugins" /></a></p>
<p>Slides is a crazy simple slideshow plugin for jQuery. With features like looping, auto play, fade or slide transition effects, crossfading, image preloading, and auto generated pagination.</p>
<h3><a href="http://facedetection.jaysalvat.com/" target="_blank">Face Detection</a></h3>
<p><a href="http://facedetection.jaysalvat.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_4.jpg" alt="jquery image plugins" /></a></p>
<p>Face Detection is an impressive plugin that does just what its name suggests. It detects faces in photos.</p>
<h3><a href="http://aviathemes.com/aviaslider/" target="_blank">AviaSlider</a></h3>
<p><a href="http://aviathemes.com/aviaslider/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_3.jpg" alt="jquery image plugins" /></a></p>
<p>AviaSlider is a jQuery slideshow plugin with unique transition effects.</p>
<h3><a href="http://nanotux.com/blog/fullscreen/" target="_blank">Fullscreenr</a></h3>
<p><a href="http://nanotux.com/blog/fullscreen/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_5.jpg" alt="jquery image plugins" /></a></p>
<p>So you want to have a background image on your website, which always fills the screen and maintains its aspect ratio? And it has to be centered, instead of focussing at the top left corner of the image? This plugin does that.</p>
<h3><a href="http://www.wbotelhos.com/slidy/" target="_blank">Slidy</a></h3>
<p><a href="http://www.wbotelhos.com/slidy/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_6.jpg" alt="jquery image plugins" /></a></p>
<p>jQuery Slidy is a plugin that generates a customizable transitions automatically.</p>
<h3><a href="http://playground.mobily.pl/jquery/mobily-notes.html" target="_blank">MobilyNotes</a></h3>
<p><a href="http://playground.mobily.pl/jquery/mobily-notes.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_8.jpg" alt="jquery image plugins" /></a></p>
<p>MobilyNotes is lightweight (2KB) jQuery plugin that shows your images or other html content in a stacked format.</p>
<h3><a href="http://dev.daledavies.co.uk/easyslides/" target="_blank">jQuery Easy Slides</a></h3>
<p><a href="http://dev.daledavies.co.uk/easyslides/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_1.jpg" alt="jquery image plugins" /></a></p>
<p>Easy Slides is an extremely easy to use plugin for making slideshows. It also has the advantage of being fairly light weight, with both Javascript and CSS weighing in at just under 2.1kb.</p>
<h3><a href="http://builtbywill.com/code/booklet/" target="_blank">Booklet</a></h3>
<p><a href="http://builtbywill.com/code/booklet/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_7.jpg" alt="jquery image plugins" /></a></p>
<p>Booklet is a jQuery plugin for displaying images and more in a book format with a turning page effect.</p>
<h3><a href="http://playground.mobily.pl/jquery/mobily-select.html" target="_blank">MobilySelect</a></h3>
<p><a href="http://playground.mobily.pl/jquery/mobily-select.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_9.jpg" alt="jquery image plugins" /></a></p>
<p>MobilySelect is jQuery plugin (2kB) that replaces one collection of items with another.</p>
<h3><a href="http://pikachoose.com/demo/" target="_blank">Pikachoose</a></h3>
<p><a href="http://pikachoose.com/demo/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2011/01/jquery_image_10.jpg" alt="jquery image plugins" /></a></p>
<p>Pikachoose is a lightweight Jquery plugin that allows easy presentation of photos with options for slideshows, navigation buttons, and auto play.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/freebies/10-useful-jquery-plugins-for-images/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>10 Useful jQuery Plugins and Techniques</title>
		<link>http://webdesignledger.com/resources/10-useful-jquery-plugins-and-techniques</link>
		<comments>http://webdesignledger.com/resources/10-useful-jquery-plugins-and-techniques#comments</comments>
		<pubDate>Fri, 12 Nov 2010 05:36:40 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=7407</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7407&c=1612563581' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7407&c=1612563581' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />jQuery is great for enhancing a website. Whether it be by adding effects that give the site a wow factor, or by making navigation easier, jQuery can have a big impact on the way a website is perceived and used. jQuery is extremely popular among web designers and developers for it&#8217;s flexibility, ease-of-use, and of [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7407&c=2113254063' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7407&c=2113254063' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>jQuery is great for enhancing a website. Whether it be by adding effects that give the site a wow factor, or by making navigation easier, jQuery can have a big impact on the way a website is perceived and used. jQuery is extremely popular among web designers and developers for it&#8217;s flexibility, ease-of-use, and of course it&#8217;s plugins. So for this post, we&#8217;ve rounded up 10 more jQuery plugins and techniques that you should find very useful.<span id="more-7407"></span></p>
<h3><a href="http://buildinternet.com/2010/11/supersized-3-0-full-screen-background-slideshow-jquery-plugin/" target="_blank">Supersized 3.0 Plugin</a></h3>
<p><a href="http://buildinternet.com/2010/11/supersized-3-0-full-screen-background-slideshow-jquery-plugin/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_9.jpg" alt="jquery" /></a></p>
<p>This plugin produces a full screen slideshow complete with transitions, preloading, and navigation controls.</p>
<h3><a href="http://tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/" target="_blank">Apple-like Retina Effect</a></h3>
<p><a href="http://tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_1.jpg" alt="jquery" /></a></p>
<p>Learn how to create an Apple Retina Display magnifying effect with jQuery and CSS.</p>
<h3><a href="http://lab.smashup.it/flip/" target="_blank">Flip!</a></h3>
<p><a href="http://lab.smashup.it/flip/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_3.jpg" alt="jquery" /></a></p>
<p>Flip is a jQuery plugin that will flip easily your elements in four directions.</p>
<h3><a href="http://www.marcofolio.net/webdesign/jslickmenu_a_jquery_plugin_for_slick_css3_menus.html" target="_blank">jSlickmenu</a></h3>
<p><a href="http://www.marcofolio.net/webdesign/jslickmenu_a_jquery_plugin_for_slick_css3_menus.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_4.jpg" alt="jquery" /></a></p>
<p>jSlickmenu, creates, well, slick menus with jQuery. Combined with some great CSS3 features likes rotation and shadows, this plugin can really lift up your design. It&#8217;s fairly easy to use, highly customizable and pretty cool (and fun!) to see.</p>
<h3><a href="http://www.asual.com/jquery/address/" target="_blank">jQuery Address</a></h3>
<p><a href="http://www.asual.com/jquery/address/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_5.jpg" alt="jquery" /></a></p>
<p>The jQuery Address plugin provides powerful deep linking capabilities and allows the creation of unique virtual addresses that can point to a website section or an application state.</p>
<h3><a href="http://www.azoffdesign.com/plugins/js/overscroll" target="_blank">Overscroll</a></h3>
<p><a href="http://www.azoffdesign.com/plugins/js/overscroll" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_2.jpg" alt="jquery" /></a></p>
<p>Overscroll is a jQuery plug-in that mimics the iphone/ipad scrolling experience in a browser. The plug-in adds a draggable drift to overflowed DOM elements as well as a set of fading &#8216;thumbs&#8217;.</p>
<h3><a href="http://elliottkember.com/sexy_curls.html#none" target="_blank">jQuery Page Curl</a></h3>
<p><a href="http://elliottkember.com/sexy_curls.html#none" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_6.jpg" alt="jquery" /></a></p>
<p>This jQuery plugin allows you to add an interactive page curl to your website.</p>
<h3><a href="http://theodin.co.uk/blog/ajax/contactable-jquery-plugin.html" target="_blank">Contactable</a></h3>
<p><a href="http://theodin.co.uk/blog/ajax/contactable-jquery-plugin.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_7.jpg" alt="jquery" /></a></p>
<p>Contactable is a jQuery plugin designed to make contact/feedback forms simpler and more accessible. This plugin will enable you to create a contact form on any page of a site with minimal effort.</p>
<h3><a href="http://buildinternet.com/2010/02/animate-panning-slideshow-with-jquery/" target="_blank">Panning Slideshow</a></h3>
<p><a href="http://buildinternet.com/2010/02/animate-panning-slideshow-with-jquery/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_8.jpg" alt="jquery" /></a></p>
<p>In this tutorial you’ll take the makings of a classic slideshow, but use a different kind of transition to animate between slides.</p>
<h3><a href="http://www.csskarma.com/blog/sliding-labels-plugin/" target="_blank">Sliding Labels</a></h3>
<p><a href="http://www.csskarma.com/blog/sliding-labels-plugin/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/11/jquery_ui_10.jpg" alt="jquery" /></a></p>
<p>Sliding Labels is a nifty plugin that displays text fields with the labels inside. When the field is clicks, the labels slide out allowing the user to input text.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/resources/10-useful-jquery-plugins-and-techniques/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>10 Fresh jQuery Plugins and Tutorials</title>
		<link>http://webdesignledger.com/tutorials/10-fresh-jquery-plugins-and-tutorials</link>
		<comments>http://webdesignledger.com/tutorials/10-fresh-jquery-plugins-and-tutorials#comments</comments>
		<pubDate>Fri, 22 Oct 2010 05:51:33 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=7183</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7183&c=1833969950' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7183&c=1833969950' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />The popularity of jQuery continues to grow. This means that we&#8217;re seeing it used on more websites these days, and there are more developers coming up with new ways to use it. The great thing about that is many of these developers are sharing what they learn though tutorials and plugins. We&#8217;re always on the [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7183&c=806477974' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=7183&c=806477974' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>The popularity of jQuery continues to grow. This means that we&#8217;re seeing it used on more websites these days, and there are more developers coming up with new ways to use it. The great thing about that is many of these developers are sharing what they learn though tutorials and plugins. We&#8217;re always on the look out for this new jQuery stuff. So for this post, I&#8217;ve gathered 10 tutorials and plugins that will help you learn and implement some fresh jQuery effects in your projects.<span id="more-7183"></span></p>
<h3><a href="http://tympanus.net/codrops/2010/05/05/beautiful-background-image-navigation-with-jquery/" target="_blank">Beautiful Background Image Navigation</a></h3>
<p><a href="http://tympanus.net/codrops/2010/05/05/beautiful-background-image-navigation-with-jquery/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_2.jpg" alt="fresh jquery" /></a></p>
<p>This tutorial will teach you how to create a beautiful navigation that has a background image slide effect. The main idea is to have three list items that contain the same background image but with a different position.</p>
<h3><a href="http://sandbox.sebnitu.com/jquery/quovolver/" target="_blank">Quovolver</a></h3>
<p><a href="http://sandbox.sebnitu.com/jquery/quovolver/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_7.jpg" alt="fresh jquery" /></a></p>
<p>Quovolver is a simple extension for jQuery that takes a group of quotes and displays them on your page in an elegant way.</p>
<h3><a href="http://daverupert.com/2010/09/lettering-js/" target="_blank">Lettering.js</a></h3>
<p><a href="http://daverupert.com/2010/09/lettering-js/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_6.jpg" alt="fresh jquery" /></a></p>
<p>Lettering.js is a lightweight, easy to use jQuery plugin for radical Web Typography.</p>
<h3><a href="http://odyniec.net/projects/imgareaselect/" target="_blank">imgAreaSelect</a></h3>
<p><a href="http://odyniec.net/projects/imgareaselect/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_3.jpg" alt="fresh jquery" /></a></p>
<p>imgAreaSelect is a plugin for selecting a rectangular area of an image. It allows web developers to easily implement image cropping functionality, as well as other user interface features, such as photo notes (like those on Flickr). </p>
<h3><a href="http://tutorialzine.com/2010/09/html5-canvas-slideshow-jquery/" target="_blank">An HTML5 Slideshow w/ Canvas &#038; jQuery</a></h3>
<p><a href="http://tutorialzine.com/2010/09/html5-canvas-slideshow-jquery/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_4.jpg" alt="fresh jquery" /></a></p>
<p>This tutorial will help you create a progressively enhanced slideshow with a fancy transitioning effect, which is perfectly functional in older browsers as well.</p>
<h3><a href="http://baijs.nl/tinycarousel/" target="_blank">Tiny Carousel</a></h3>
<p><a href="http://baijs.nl/tinycarousel/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_5.jpg" alt="fresh jquery" /></a></p>
<p>Tiny Carousel is a lightweight carousel for sliding html based content. It was built using the javascript jQuery library. Tiny Carousel was designed to be a dynamic lightweight utility that gives webdesigners a powerfull way of enhancing a websites user interface. </p>
<h3><a href="http://www.catchmyfame.com/2010/09/13/jquery-panel-gallery-2-0-released/" target="_blank">jQuery Panel Gallery 2.0</a></h3>
<p><a href="http://www.catchmyfame.com/2010/09/13/jquery-panel-gallery-2-0-released/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_8.jpg" alt="fresh jquery" /></a></p>
<p>jQuery Panel Gallery is a plugin that converts a set of images into a slideshow with fancy transitions.</p>
<h3><a href="http://tympanus.net/codrops/2010/09/06/collapsing-site-navigation/" target="_blank">Collapsing Site Navigation</a></h3>
<p><a href="http://tympanus.net/codrops/2010/09/06/collapsing-site-navigation/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_1.jpg" alt="fresh jquery" /></a></p>
<p>Learn how to create a collapsing menu that contains vertical navigation bars and a slide out content area.</p>
<h3><a href="http://manos.malihu.gr/style-my-tooltips-jquery-plugin" target="_blank">Style my Tooltips</a></h3>
<p><a href="http://manos.malihu.gr/style-my-tooltips-jquery-plugin" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_9.jpg" alt="fresh jquery" /></a></p>
<p>Style my Tooltips is a simple jQuery plugin to better style native browser tooltips.</p>
<h3><a href="http://www.stevefenton.co.uk/Content/Jquery-Mega-Select-List/" target="_blank">jQuery Mega Select List</a></h3>
<p><a href="http://www.stevefenton.co.uk/Content/Jquery-Mega-Select-List/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/10/fresh_jquery_10.jpg" alt="fresh jquery" /></a></p>
<p>The jQuery Mega Select List is a plugin that converts a long select-list into a mega-menu style display, which makes it easier to find and select the right option.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/tutorials/10-fresh-jquery-plugins-and-tutorials/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>11 Useful jQuery Tab Navigation Solutions</title>
		<link>http://webdesignledger.com/tutorials/11-useful-jquery-tab-navigation-solutions</link>
		<comments>http://webdesignledger.com/tutorials/11-useful-jquery-tab-navigation-solutions#comments</comments>
		<pubDate>Wed, 29 Sep 2010 05:15:27 +0000</pubDate>
		<dc:creator>Henry Jones</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://webdesignledger.com/?p=6955</guid>
		<description><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=6955&c=1334178807' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=6955&c=1334178807' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br />Sometimes using tabs just makes a lot of sense. For instance, if you have a limited amount of screen real estate, tabs can allow you to save room by giving the user a way to toggle between several items in a small space. And to take your tabs a step further, you can throw jQuery [...]]]></description>
			<content:encoded><![CDATA[<a href='http://rss.buysellads.com/click.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=6955&c=951671618' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&k=41a9fc188355b6ab15f5fc023749ebc5&a=6955&c=951671618' border='0' alt='' /></a><p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p><br /><p>Sometimes using tabs just makes a lot of sense. For instance, if you have a limited amount of screen real estate, tabs can allow you to save room by giving the user a way to toggle between several items in a small space. And to take your tabs a step further, you can throw jQuery into the mix for some nice transition and animation effects. If you&#8217;ve yet to build a tab navigation with jQuery, here are 11 tutorials and plugins to help you get going.<span id="more-6955"></span></p>
<h3><a href="http://css-tricks.com/organic-tabs/" target="_blank">Create A Tabbed Interface Using jQuery</a></h3>
<p><a href="http://css-tricks.com/organic-tabs/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_11.jpg" alt="jquery tab navigation" /></a></p>
<p>A tutorial and plugin for creating an animated tabbed area.</p>
<h3><a href="http://tutorialzine.com/2010/01/sweet-tabs-jquery-ajax-css/" target="_blank">Sweet AJAX Tabs With jQuery 1.4 &#038; CSS3</a></h3>
<p><a href="http://tutorialzine.com/2010/01/sweet-tabs-jquery-ajax-css/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_1.jpg" alt="jquery tab navigation" /></a></p>
<p>In this tutorials you&#8217;ll learn how to create an AJAX-powered tab page with CSS3 and jQuery.</p>
<h3><a href="http://net.tutsplus.com/tutorials/javascript-ajax/building-a-better-blogroll-dynamic-fun-with-simplepie-and-jquery/" target="_blank">Building a Better Blogroll: Dynamic Fun with SimplePie and jQuery</a></h3>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/building-a-better-blogroll-dynamic-fun-with-simplepie-and-jquery/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_3.jpg" alt="jquery tab navigation" /></a></p>
<p>This tutorials teaches you how to build a dynamic tabbed blogroll with some fun jQuery animations.</p>
<h3><a href="http://net.tutsplus.com/html-css-techniques/how-to-create-a-slick-tabbed-content-area/" target="_blank">Create a Slick Tabbed Content Area using CSS &#038; jQuery</a></h3>
<p><a href="http://net.tutsplus.com/html-css-techniques/how-to-create-a-slick-tabbed-content-area/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_4.jpg" alt="jquery tab navigation" /></a></p>
<p>This tutorials teaches you how to build a simple little tabbed information box in HTML, then make it function using some simple Javascript, and then finally we’ll achieve the same thing using the jQuery library.</p>
<h3><a href="http://jqueryglobe.com/article/feature-list" target="_blank">Feature List</a></h3>
<p><a href="http://jqueryglobe.com/article/feature-list" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_10.jpg" alt="jquery tab navigation" /></a></p>
<p>This jQuery plugin enables simple and easy creation of an interactive &#8220;Featured Items&#8221; widget.</p>
<h3><a href="http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/" target="_blank">Fancy Sliding Form with jQuery</a></h3>
<p><a href="http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_5.jpg" alt="jquery tab navigation" /></a></p>
<p>This tutorial teaches you how to create a fancy sliding form that shows some validation feedback to the user after each step. This form saves a lot of space and is easy to access – it basically works like a slide show, just that we have fieldsets of a form instead of images.</p>
<h3><a href="http://net.tutsplus.com/javascript-ajax/create-a-tabbed-interface-using-jquery/" target="_blank">Create A Tabbed Interface Using jQuery</a></h3>
<p><a href="http://net.tutsplus.com/javascript-ajax/create-a-tabbed-interface-using-jquery/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_2.jpg" alt="jquery tab navigation" /></a></p>
<p>This tutorial teaches you how to easily create a tabbed interface using the Tabs function in the jQuery UI library.</p>
<h3><a href="http://www.unwrongest.com/projects/tabify/" target="_blank">Tabify</a></h3>
<p><a href="http://www.unwrongest.com/projects/tabify/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_6.jpg" alt="jquery tab navigation" /></a></p>
<p>This Jquery plugin lets you easily create tabbed content. All you need is an ul-element with some li-elements and a couple of related content-divs. The major difference between Tabify and it’s competitors is it’s size.</p>
<h3><a href="http://github.com/ginader/Accessible-Tabs" target="_blank">Accessible-Tabs</a></h3>
<p><a href="http://github.com/ginader/Accessible-Tabs" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_7.jpg" alt="jquery tab navigation" /></a></p>
<p>jQuery Plugin that generates a Tab Navigation from Markup that makes sense without Javascript. The generated Tabs are the only ones out there that work for Screenreader users without support for WAI ARIA.</p>
<h3><a href="http://www.sunsean.com/idTabs/" target="_blank">idTabs</a></h3>
<p><a href="http://www.sunsean.com/idTabs/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_8.jpg" alt="jquery tab navigation" /></a></p>
<p>idTabs is a plugin for jQuery that makes adding tabs into a website super simple. But it can also open the door to endless possiblities.</p>
<h3><a href="http://www.queness.com/post/655/jquery-moving-tab-and-sliding-content-tutorial" target="_blank">jQuery Moving Tab and Sliding Content Tutorial</a></h3>
<p><a href="http://www.queness.com/post/655/jquery-moving-tab-and-sliding-content-tutorial" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2010/09/jquery_tabs_9.jpg" alt="jquery tab navigation" /></a></p>
<p>Learn how to build a lava lamp tab and sliding content all together with just simple jQuery code. This script is good for sidebar that display recent posts, comments and community news.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignledger.com/tutorials/11-useful-jquery-tab-navigation-solutions/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

