<?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>Witslog Wiki &#187; JQuery</title>
	<atom:link href="http://witslog.com/wiki/category/technical/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://witslog.com/wiki</link>
	<description>Technical Log</description>
	<lastBuildDate>Fri, 14 May 2010 06:17:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>fetch the records through ajax and jquery in json format using kohana</title>
		<link>http://witslog.com/wiki/technical/php/fetch-the-records-through-ajax-and-jquery-in-json-format-using-kohana</link>
		<comments>http://witslog.com/wiki/technical/php/fetch-the-records-through-ajax-and-jquery-in-json-format-using-kohana#comments</comments>
		<pubDate>Fri, 14 May 2010 06:17:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[Kohana]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Code]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=140</guid>
		<description><![CDATA[HI All,
 After spending lot&#8217;s  of time, i got result in josn format in kohana. I want to fetch all records of last 3 minutes of comment table and it will display on my site after check is record already show on browser or not.
As...]]></description>
			<content:encoded><![CDATA[<p>HI All,</p>
<p><em><strong> After spending lot&#8217;s  of time, i got result in josn format in kohana. I want to fetch all records of last 3 minutes of comment table and it will display on my site after check is record already show on browser or not.</strong></em></p>
<p><strong>As we know kohana is MVC framework so we need to handle controller as well as model.</strong></p>
<p><strong>//Model</strong></p>
<p>In model first i write query to fetch records from database which is under a function get_last_three_minutes_comments.</p>
<p>public function get_last_three_minutes_comments($id){</p>
<p>$query = $this-&gt;db-&gt;query(&#8220;SELECT u.user_name, gs.* from comments as gs INNER JOIN users as u on gs.`user_id`=u.`user_id` WHERE DATE_SUB( now( ) , INTERVAL 3 MINUTE ) &lt; gs.speak_date and gs.group_id=$id ORDER BY id DESC&#8221;);<br />
return $query-&gt;result_array();<br />
}</p>
<p><strong>//Controller</strong></p>
<p>I call this model file from controller by write below code.</p>
<p>public function get_last_three_minutes_comments($page_id){<br />
$data =    $this-&gt;comment-&gt;get_last_three_minutes_comments($page_id); // i have already made a object in constructor for comment table.</p>
<p><strong>// As we know model return data in mixture of array and object and for json we need data only in array format. so here i manipulate data and convert into array format.</strong></p>
<p>$arr = array();<br />
$id=0;<br />
foreach($data as $id =&gt; $rec){<br />
$arr[$id] = array(&#8216;id&#8217;=&gt;$rec-&gt;id,&#8217;user_name&#8217;=&gt;$rec-&gt;user_name,&#8217;speak&#8217;=&gt;$rec-&gt;speak,&#8217;speak_time&#8217;=&gt;$rec-&gt;speak_date);<br />
$id++;<br />
}</p>
<p>//Now we change value in json format using json_encode function and return to JavaScript file by echo command.</p>
<p>echo json_encode(array(&#8216;comment_data&#8217;=&gt;$arr));<br />
}</p>
<p><strong>Javascript file</strong></p>
<p>//In jquery we use $.ajax function to get data from server by using ajax. $.ajax gets some parameter such as dataType which may be get, post, json as our requirement. I use json because i need to handle data in json format. Second parameter is url. url tell to server which page will be called. third one is success. When all server processing is completed then it return data in success which i get in mycomment variable.</p>
<p>$.ajax({<br />
dataType: &#8216;json&#8217;,<br />
url:url_main+&#8221;widgets/get_runtime_comment/&#8221;+tabid[1],<br />
success:function(mycomment){</p>
<p><strong>// In controller i make a array which name is comment_data. Now i access data of json by name of javascript variable in which holds all data then after write array name of php then after call by array index. such as call to user_name field we are below line</strong></p>
<p><strong>mycomment.comment_data[0].user_name;</strong></p>
<p><strong> mycomment is javascript variable name, comment_data is php array and user_name is index name of that array.</strong></p>
<p>len = mycomment.comment_data.length; // here i get total number of records for run a loop.<br />
i=0;<br />
while(i&lt;len){<br />
cmid = mycomment.comment_data[i].id; // here i get id of current record.<br />
comt = $(&#8216;#tabs-&#8217;+tabid[1]).children().find(&#8216;.commentbox&#8217;).find(&#8216;#&#8217;+cmid).html(); // Check whether this record is exist or not in current div.</p>
<p>//if i get blank then it will added into that particular div else ignore it.<br />
if(comt==null){<br />
dt = &#8216;&lt;div id=&#8221;&#8216;+mycomment.comment_data[i].id+&#8217;&gt;&#8217;+mycomment.comment_data[i].speak+&#8217;&lt;br&gt;By: &#8211; &#8216;+mycomment.comment_data[i].user_name+&#8217; on &#8216;+mycomment.comment_data[i].speak_time+&#8217;&lt;/div&gt;&#8217;;<br />
$(&#8216;#tabs-&#8217;+tabid[1]).children().find(&#8216;.commentbox&#8217;).find(&#8216;._group_comments&#8217;).prepend(dt);<br />
}<br />
i++;<br />
}</p>
<p>}<br />
});</p>
<p>I hope you will learn lot&#8217;s of thing from this article.</p>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/php/fetch-the-records-through-ajax-and-jquery-in-json-format-using-kohana/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Set user as idle in PHP using jquery</title>
		<link>http://witslog.com/wiki/technical/jquery/set-user-as-idle-in-php-using-jquery</link>
		<comments>http://witslog.com/wiki/technical/jquery/set-user-as-idle-in-php-using-jquery#comments</comments>
		<pubDate>Wed, 07 Apr 2010 10:19:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=137</guid>
		<description><![CDATA[idleTimer = null;
idleState = false;
idleWait = 2000;
(function ($) {
    $(document).ready(function () {
        $(&#8216;*&#8217;).bind(&#8216;mousemove keydown scroll&#8217;, function () {
            clearTimeout(idleTimer);
     ...]]></description>
			<content:encoded><![CDATA[<p>idleTimer = null;<br />
idleState = false;<br />
idleWait = 2000;</p>
<p>(function ($) {</p>
<p>    $(document).ready(function () {</p>
<p>        $(&#8216;*&#8217;).bind(&#8216;mousemove keydown scroll&#8217;, function () {</p>
<p>            clearTimeout(idleTimer);</p>
<p>            if (idleState == true) { </p>
<p>                // Reactivated event<br />
                $(&#8220;body&#8221;).append(&#8220;
<p>Welcome Back.</p>
<p>&#8220;);<br />
            }</p>
<p>            idleState = false;</p>
<p>            idleTimer = setTimeout(function () { </p>
<p>                // Idle Event<br />
                $(&#8220;body&#8221;).append(&#8220;
<p>You&#8217;ve been idle for &#8221; + idleWait/1000 + &#8221; seconds.</p>
<p>&#8220;);</p>
<p>                idleState = true; }, idleWait);<br />
        });</p>
<p>        $(&#8220;body&#8221;).trigger(&#8220;mousemove&#8221;);</p>
<p>    });<br />
}) (jQuery)</p>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/jquery/set-user-as-idle-in-php-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Jquery Examples with Live Demos</title>
		<link>http://witslog.com/wiki/technical/jquery/top-10-jquery-examples-with-live-demos</link>
		<comments>http://witslog.com/wiki/technical/jquery/top-10-jquery-examples-with-live-demos#comments</comments>
		<pubDate>Sat, 06 Mar 2010 23:35:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=55</guid>
		<description><![CDATA[

What is jquery?
A example is more worth than 100 words
how many lines of code you might need to achieve this?


  Please upgrade your browser


Answer: Only four lines and that too without knowing any regular expressions….. Yes. Using a library called jquery and its validate...]]></description>
			<content:encoded><![CDATA[<div id="post-55" class="post">
<p><!--noadsense--><br />
<strong>What is jquery?</strong><br />
A example is more worth than 100 words</p>
<p>how many lines of code you might need to achieve this?
</p>
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 200px; width: 625px;" src="http://www.myphpdunia.com/jquery/jquery_validation.html">Please upgrade your browser</iframe>
</div>
<p>
<strong>Answer:</strong> Only four lines and that too without knowing any regular expressions….. Yes. Using a library called jquery and its validate  plugin. Code is shown below.</p>
<div style="" class="dean_ch">
<ol>
<li class="li1">
<div class="de1">$.<span class="me1">validator</span>.<span class="me1">setDefaults</span><span class="br0">(</span><span class="br0">{</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; submitHandler: <span class="kw2">function</span><span class="br0">(</span><span class="br0">)</span> <span class="br0">{</span> <span class="kw3">alert</span><span class="br0">(</span><span class="st0">&#8220;submitted!&#8221;</span><span class="br0">)</span>; <span class="br0">}</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">}</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li2">
<div class="de2">$<span class="br0">(</span><span class="br0">)</span>.<span class="me1">ready</span><span class="br0">(</span><span class="kw2">function</span><span class="br0">(</span><span class="br0">)</span> <span class="br0">{</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// validate the comment form when it is submitted</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">(</span><span class="st0">&#8220;#commentForm&#8221;</span><span class="br0">)</span>.<span class="me1">validate</span><span class="br0">(</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">}</span><span class="br0">)</span>;</div>
</li>
</ol>
</div>
<p>Below are some good design examples of what you can achieve using jquery.<br />
If you have came across any nice implementation of Jquery, let me know through comments. I will like to update my list.</p>
<ul>
<li class="example-title"> Example 1 :Slide tabbed box</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 300px; width: 400px;" src="http://www.myphpdunia.com/jquery/example_bubble.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/www.hieu.co.uk');" href="http://www.hieu.co.uk/blog/index.php/2009/01/28/how-easy-to-create-a-slide-tabbed-box-using-jquery/" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/www.hieu.co.uk');" href="http://www.hieu.co.uk/blog/index.php/2009/01/28/how-easy-to-create-a-slide-tabbed-box-using-jquery/" class="rollover">Download Code</a></div>
</div>
<p><span id="more-55"></span></p>
<li class="example-title">Example 2 : Expanding menu like Apple site</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 90px; width: 530px;" src="http://www.myphpdunia.com/jquery/example_expanding_menu.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/www.kriesi.at');" href="http://www.kriesi.at/archives/apple-menu-improved-with-jquery" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/www.kriesi.at');" href="http://www.kriesi.at/wp-content/uploads/files/kwicks.zip" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 3 : Zoom image</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 250px; width: 600px;" src="http://www.myphpdunia.com/jquery/example_image_zoom.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/justinfarmer.com');" href="http://justinfarmer.com/?p=14" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/justinfarmer.com');" href="http://justinfarmer.com/tutorials/imageexpansion/imageexpansion.zip" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 4 : Sliding boxes and captions to image</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 550px; width: 625px;" src="http://www.myphpdunia.com/jquery/example_imagecap.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/buildinternet.com');" href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/buildinternet.com');" href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 5 : Sliding image behind menu</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 370px; width: 600px;" src="http://www.myphpdunia.com/jquery/example_img_animate.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/snook.ca');" href="http://snook.ca/archives/javascript/jquery-bg-image-animations/" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/snook.ca');" href="http://snook.ca/technical/jquery-bg/" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 6 : Image tab</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 280px; width: 530px;" src="http://www.myphpdunia.com/jquery/example_img_tab.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/jqueryfordesigners.com');" href="http://jqueryfordesigners.com/bbc-radio-1-zoom-tabs/" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/jqueryfordesigners.com');" href="http://jqueryfordesigners.com/demo/radio1.html" class="rollover">Download Code</a></div>
<p>* This example does not work correctly in IE7
</p>
</div>
<li class="example-title">Example 7 : Menu Fade</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 160px; width: 630px;" src="http://www.myphpdunia.com/jquery/example_menu_fade.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/jqueryfordesigners.com');" href="http://jqueryfordesigners.com/image-fade-revisited/" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/jqueryfordesigners.com');" href="http://jqueryfordesigners.com/demo/fade-revisited.html" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 8 : Slider Menu</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 340px; width: 230px;" src="http://www.myphpdunia.com/jquery/example_slider_demo.html">Please upgrade your browser</iframe>
</div>
<div style="float: left; width: 370px; text-align: center;">
<script type="text/javascript">&lt;!--
google_ad_client = "pub-3118055480619313";
/* 300x250 Middle */
google_ad_slot = "5292893467";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script><script>google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);</script><ins style="display: inline-table; border: medium none; height: 250px; margin: 0pt; padding: 0pt; position: relative; visibility: visible; width: 300px;"><ins style="display: block; border: medium none; height: 250px; margin: 0pt; padding: 0pt; position: relative; visibility: visible; width: 300px;"><iframe scrolling="no" width="300" height="250" frameborder="0" vspace="0" style="left: 0pt; position: absolute; top: 0pt;" src="http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-3118055480619313&amp;output=html&amp;h=250&amp;slotname=5292893467&amp;w=300&amp;lmt=1267918326&amp;flash=10.0.42&amp;url=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;dt=1267918331762&amp;prev_slotnames=3840678137&amp;correlator=1267918328782&amp;frm=0&amp;ga_vid=1673069980.1267918329&amp;ga_sid=1267918329&amp;ga_hid=499725855&amp;ga_fc=0&amp;ga_wpids=UA-717123-2&amp;u_tz=330&amp;u_his=1&amp;u_java=0&amp;u_h=800&amp;u_w=1280&amp;u_ah=760&amp;u_aw=1280&amp;u_cd=24&amp;u_nplug=17&amp;u_nmime=101&amp;biw=1263&amp;bih=522&amp;ref=http%3A%2F%2Fwww.google.co.in%2Fsearch%3Fhl%3Den%26client%3Dfirefox-a%26hs%3Dci3%26rls%3Dorg.mozilla%3Aen-GB%3Aofficial%26q%3Djquery%2Bexamples%26revid%3D1068260993%26ei%3DEeGSS42xC5CxrAfo3fmaCw%26sa%3DX%26oi%3Drevisions_inline%26resnum%3D0%26ct%3Dbroad-revision%26cd%3D2%26ved%3D0CDIQ1QIoAQ&amp;fu=0&amp;ifi=2&amp;dtd=7&amp;xpc=n8oOQdlbDn&amp;p=http%3A//www.myphpdunia.com" name="google_ads_frame" marginwidth="0" marginheight="0" id="google_ads_frame2" hspace="0" allowtransparency="true"></iframe></ins></ins>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/jqueryfordesigners.com');" href="http://jqueryfordesigners.com/slide-out-and-drawer-effect/" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/jqueryfordesigners.com');" href="http://jqueryfordesigners.com/demo/simple-slide-demo.html" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 9 : Tabs</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 210px; width: 540px;" src="http://www.myphpdunia.com/jquery/example_tabs.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/docs.jquery.com');" href="http://docs.jquery.com/UI/Tabs" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/docs.jquery.com');" href="http://docs.jquery.com/UI/Tabs#source" class="rollover">Download Code</a></div>
</div>
<li class="example-title">Example 10 : Tabbed Menu</li>
<div class="example-container">
<div class="iframe-wrapper">
  <iframe frameborder="0" style="height: 330px; width: 260px;" src="http://www.myphpdunia.com/jquery/example_tabbed_menu.html">Please upgrade your browser</iframe>
</div>
<div class="example-links"><a target="_blank" onclick="javascript:pageTracker._trackPageview('/www.queness.com');" href="http://www.queness.com/post/106/jquery-tabbed-interfacetabbed-structure-menu-tutorial" class="rollover">Visit Site</a><a onclick="javascript:pageTracker._trackPageview('/www.queness.com');" href="http://www.queness.com/resources/archives/jquery-tab-menu.zip" class="rollover">Download Code</a></div>
</div>
</ul>
<div class="sociable">
<div class="sociable_tagline">
<strong>Have you liked it? Why not help me by sharing this :</strong>
</div>
<ul>
<li><a title="Digg" onclick="javascript:pageTracker._trackPageview('/digg.com');" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;title=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="Digg" title="Digg" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/digg.png"></a></li>
<li><a title="del.icio.us" onclick="javascript:pageTracker._trackPageview('/del.icio.us');" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;title=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="del.icio.us" title="del.icio.us" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/delicious.png"></a></li>
<li><a title="Facebook" onclick="javascript:pageTracker._trackPageview('/www.facebook.com');" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;t=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="Facebook" title="Facebook" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/facebook.png"></a></li>
<li><a title="Google" onclick="javascript:pageTracker._trackPageview('/www.google.com');" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;title=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="Google" title="Google" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/googlebookmark.png"></a></li>
<li><a title="MySpace" onclick="javascript:pageTracker._trackPageview('/www.myspace.com');" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;t=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="MySpace" title="MySpace" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/myspace.png"></a></li>
<li><a title="Reddit" onclick="javascript:pageTracker._trackPageview('/reddit.com');" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;title=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="Reddit" title="Reddit" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/reddit.png"></a></li>
<li><a title="Slashdot" onclick="javascript:pageTracker._trackPageview('/slashdot.org');" href="http://slashdot.org/bookmark.pl?title=Top%2010%20Jquery%20Examples%20with%20Live%20Demos&amp;url=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="Slashdot" title="Slashdot" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/slashdot.png"></a></li>
<li><a title="StumbleUpon" onclick="javascript:pageTracker._trackPageview('/www.stumbleupon.com');" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F&amp;title=Top%2010%20Jquery%20Examples%20with%20Live%20Demos" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="StumbleUpon" title="StumbleUpon" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/stumbleupon.png"></a></li>
<li><a title="Technorati" onclick="javascript:pageTracker._trackPageview('/technorati.com');" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="Technorati" title="Technorati" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/technorati.png"></a></li>
<li><a title="TwitThis" onclick="javascript:pageTracker._trackPageview('/twitter.com');" href="http://twitter.com/home?status=http%3A%2F%2Fwww.myphpdunia.com%2F2009%2F04%2F19%2Ftop-10-jquery-examples-with-live-demos%2F" target="_blank" rel="nofollow"><img class="sociable-hovers" alt="TwitThis" title="TwitThis" src="http://www.myphpdunia.com/wp-content/plugins/sociable/images/twitter.gif"></a></li>
</ul>
</div>
<div class="post-info">
				April 19th, 2009 in<br />
				<a rel="category tag" title="View all posts in PHP" href="http://www.myphpdunia.com/category/php/">PHP</a>,  <a rel="category tag" title="View all posts in Web Development" href="http://www.myphpdunia.com/category/web-development/">Web Development</a> by<br />
  Pravin Nirmal				| tags: <a rel="tag" href="http://www.myphpdunia.com/tag/jquery-tutorials/">jquery tutorials</a>							</div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/jquery/top-10-jquery-examples-with-live-demos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100 Popular jQuery Examples, Plugins and Tutorials</title>
		<link>http://witslog.com/wiki/technical/jquery/100-popular-jquery-examples-plugins-and-tutorials</link>
		<comments>http://witslog.com/wiki/technical/jquery/100-popular-jquery-examples-plugins-and-tutorials#comments</comments>
		<pubDate>Sat, 06 Mar 2010 23:33:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=52</guid>
		<description><![CDATA[1. jQuery  Lavalamp Menu –  It is the jQuery  plugin that is based of Guillermo Rauch plugins for   mootools and  Ganesh Mawwaha’s jQuery 1.1.x plugins.  Through   the Sliding Doors  CSS/Javascript method, you are able to...]]></description>
			<content:encoded><![CDATA[<ul><strong>1. </strong><a href="http://gmarwaha.com/blog/?cat=8" target="_blank"><strong>jQuery  Lavalamp Menu</strong></a><strong> – </strong> It is the jQuery  plugin that is based of Guillermo Rauch plugins for   mootools and  Ganesh Mawwaha’s jQuery 1.1.x plugins.  Through   the Sliding Doors  CSS/Javascript method, you are able to add a background   hover effect  on HTML link lists with Lavalamp by utilizing the Eazing   library.</ul>
<ul><strong>2. </strong><a href="http://be.twixt.us/jquery/suckerFish.php" target="_blank"><strong>Superfish Menus</strong></a><strong> – Suckerfish on ‘roids, </strong> This jQuery plugin allows the  development of improved Suckerfish style   of dropdown menus from the  existing pure CSS type of dropdown menu.    The features that are added  as a result of these include: a timed-delay   on mouseout, automatic  utilization of hoverIntent plugin when present;   obligatory IE6 –hover  capability; animated sub-menu; accessibility   through keyboard tab key;  generation of arrows to indicate the submenus;   use of drop shadows  for browsers that are capable; and many others.</ul>
<ul><strong>3. </strong><a href="http://abeautifulsite.net/notebook/80" target="_blank"><strong>jQuery  Context Menu</strong></a><strong> – </strong> This jQuery plugin  provides easy implementation, CSS styling, keyboard   shortcuts and  control methods.</ul>
<ul><strong>4. </strong><a href="http://www.jeremymartin.name/projects.php?project=kwicks" target="_blank"><strong>Kwicks  for jQuery</strong></a><strong> – </strong> This highly  versatile and customizable widget had started as just a   port for  Mootools framework.</ul>
<ul><strong>5. </strong><a href="http://www.filamentgroup.com/lab/jquery_ipod_style_drilldown_menu" target="_blank"><strong>jQuery  iPod-style Drilldown   Menu</strong></a><strong> – </strong>jQuery  has an iPod-style drilldown menu that helps users traverse    hierarchical data with relative ease and control. This feature is very    useful in organizing large data structures that don’t translate well    into the traditional fly-out or dropdown menus.</ul>
<ul><strong>6. </strong><a href="http://abeautifulsite.net/notebook.php?article=58" target="_blank"><strong>jQuery File Tree</strong></a><strong> – </strong> This jQuery plugin is a configurable AJAX file-browser  plugin where   you use to create a fully interactive and customized file  tree as little   as one of the Javascript code.</ul>
<ul><strong>7. </strong><a href="http://nettuts.com/html-css-techniques/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/" target="_blank"><strong>Recreate  Mootools Home   Page-Inspired Navigation Effect</strong></a><strong> – </strong>Users of jQuery can recreate the same effects that you see  in   a Mootools.</ul>
<ul><strong>8. </strong><a href="http://alistapart.com/articles/sprites2" target="_blank"><strong>CSS Sprites2 using jQuery</strong></a><strong> – </strong> One can use jQuery to implement CSS Sprites2.  One distinct  advantage   of jQuery over the other javascript libraries is that it  allows users   to select elements on a pages using CSS-like syntax that  we are already   familiar with.</ul>
<ul><strong>9. </strong><a href="http://plugins.jquery.com/project/accordion" target="_blank"><strong>jQuery Accordion</strong></a><strong> – </strong> It is the jQuery plugin that allows the creation of the  accordion menu.    It can be used for nested lists, nested divs and  definition lists.    This plugin has options for structure  specification, active element,   when necessary, and animation  customization.</ul>
<ul>
<h3>IMAGE MANIPULATION</h3>
</ul>
<ul><strong>10. </strong><a href="http://www.mind-projects.it/blog/?page_id=14" target="_blank"><strong>jQZoom</strong></a><strong> – </strong> It is the jQuery plugin that easily allows the creation a  small magnifier   window near an image or group of images on the web  page.  You decide   to build jQZoom to embed big images in your B2B.   This creates   the jQZoom in your eCommerce websites or any other  websites.</ul>
<ul><strong>11. </strong><a href="http://deepliquid.com/content/Jcrop.html" target="_blank"><strong>jCrop</strong></a><strong> – </strong> This jQuery plugin allows an easy and quick way of adding  image-cropping   functionality to web application.  This functionality  combines   the use of typical plug in with a powerful cross-platform  DHTML cropping   engine that is compatible to common desktop graphics  applications.</ul>
<ul><strong>12. </strong><a href="http://plugins.jquery.com/node/6695" target="_blank"><strong>Captify  1.1.0</strong></a><strong> – </strong> It is a jQuery plugin  that creates short and beautiful image captions   that appear every time  a user’s mouse passes over an image.</ul>
<ul>
<h3>IMAGE GALLERIES AND VIEWERS</h3>
</ul>
<ul><strong>13. </strong><a href="http://www.dynamicdrive.com/dynamicindex4/simplegallery.htm" target="_blank"><strong>Simple  Controls Gallery</strong></a><strong> – </strong> This jQuery  tools displays and rotates images by fading it into view   over the  previous images using navigation controls that pop up when   the mouse  moves over the gallery.</ul>
<ul><strong>14. </strong><a href="http://code.google.com/p/agile-carousel/" target="_blank"><strong>Agile Carousel</strong></a><strong> – </strong> It is a jQuery plugin that provides for the easy creation  of a custom   carousel.  This plugin makes use of PHP to call images  from the   folder that is specified by the user.  Users can configure  different   options including slide timer length, controls, transition  type, easing   type and more.</ul>
<ul>
<h3>TRANSITION EFFECTS</h3>
</ul>
<ul><strong>15. </strong><a href="http://medienfreunde.com/lab/innerfade/" target="_blank"><strong>InnerFade</strong></a><strong> – </strong> It is a small jQuery plugin used in the jQuery Javasrcipt  Library.    This plugin allows using fade effects on any element found  within a   container in and out.  The elements may include divs, list  items   or images. In order to do this, you have to create your own  slideshow   and the produce a newsticker or an animation.</ul>
<ul><strong>16. </strong><a href="http://gsgd.co.uk/sandbox/jquery/easing/" target="_blank"><strong>Easing Plugin</strong></a><strong> – </strong> It is the jQuery plugin that comes from GSGD that provides  advanced   easing options.  This plugin can support a default easing  mode.    This allows you to set your preferred animation once for all  animations.   It uses the Robert Penners easing equations for all the  transitions.</ul>
<ul><strong>17. </strong><a href="http://jquery.offput.ca/highlightFade/old.php" target="_blank"><strong>HighlightFade</strong></a><strong> – </strong> It is a jQuery plugin that allows the use of fading effects  from one   color to any other pre-selected colors at any transition  speed and interval   of color update using a color progression tactic  that is customizable.</ul>
<ul><strong>18. </strong><a href="http://www.malsup.com/jquery/cycle/int2.html" target="_blank"><strong>JQuery Cycle Plugin</strong></a><strong> – </strong> It is a jQuery plugin that is classified as basic slideshow  plugin.    It is based on the Slideshow plugin by Matt Oakes, jqShuffle  plugin   by Benjamin Sterling and the InnerFade plugin by Torsten  Baldes.    This plugin can do auto-stop, before and after callbacks,  pause-on-hover,   and many other transition effects.</ul>
<ul>
<h3>jQUERY CAROUSEL</h3>
</ul>
<ul><strong>19. </strong><a href="http://sorgalla.com/jcarousel/" target="_blank"><strong>Riding  Carousels using   jQuery</strong></a><strong> – </strong>It is  the jQuery plugin used for controlling items in a list   in vertical or  horizontal order.  The list of items can be loaded   with or without  AJAX, or can be a static HTML content.  It can   be scrolled in either  direction with or without animation effects.</ul>
<ul>
<h3>COLOR PICKER</h3>
</ul>
<ul><strong>20. </strong><a href="http://acko.net/dev/farbtastic" target="_blank"><strong>Farbtastic</strong></a><strong> – </strong> It is a jQuery plugin that allows you to add more color  picker widgets   in a page using Javascript.  These widgets are linked  to an element   and will update the value of that element when one  particular color   is picked.</ul>
<ul><strong>21. </strong><a href="http://www.intelliance.fr/jquery/color_picker/" target="_blank"><strong>jQuery Color Picker</strong></a><strong> – </strong> It is a jQuery plugin<strong> </strong>that allows you to  select color in a way   that is almost the same as you pick colors in  Adobe Photoshop.    This jQuery plugin is a Flat mode element in a page  and is easy to customize   the look by simply changing the images.  It  also has powerful controls   used for selecting the colors and fits  easily into the viewport.</ul>
<ul>
<h3>LIGHTBOX</h3>
</ul>
<ul><strong>22. </strong><a href="http://jquery.com/demo/thickbox/" target="_blank"><strong>jQuery  ThickBox</strong></a><strong> – </strong> It is a jQuery plugin  that is created using the jQuery library.    The function of this jQuery  plugin is to resize images that are bigger   than the browser window  and provides versatility in inline content,   images, AJAX content and  iFramed content.  It will remain at the   center of the window even if  you change the size of the browser window   or you scroll the pages.</ul>
<ul><strong>23. </strong><a href="http://www.ericmmartin.com/simplemodal/" target="_blank"><strong>SimpleModal Demos</strong></a><strong> – </strong> It is a jQuery plugin defined as lightweight plugin that  creates a basic   interface to provide a modal dialog.  This jQuery  plugin shall   give developers a cross-browser overlay and a container  that will contain   data provided to SimpleModal</ul>
<ul><strong>24. </strong><a href="http://leandrovieira.com/projects/jquery/lightbox/" target="_blank"><strong>jQuery  LightBox Plugin</strong></a><strong> – </strong> It is a jQuery  plugin that provide an option to present an image on   a page in a  simple and elegant manner.  Under this jQuery plugin,   the lightboxes  can be assembled in one group and provides many options   for  configurations.  It also provides both the manual and automatic    options to create and to start lightboxes.</ul>
<ul><strong>25. </strong><a href="http://css-tricks.com/revealing-photo-slider/" target="_blank"><strong>Revealing Photo Slider</strong></a><strong> – </strong> This tool of jQuery allows to create a thumbnail photo  gallery where   clicking a button would reveal the entire photo and  other information   about the photo.</ul>
<ul><strong>26. </strong><a href="http://fancy.klade.lv/" target="_blank"><strong>FancyBox</strong></a><strong> – </strong> This jQuery tool automatically scales large images to fit  in windows   by adding a nice drop-shadow under the zoomed item.  This  tool   can be used to group items that are related and add navigation  between   them.  It is totally customizable through CSS and settings.</ul>
<ul><strong>27. </strong><a href="http://www.dynamicdrive.com/dynamicindex4/facebox/index.htm" target="_blank"><strong>Facebox  Image and Content   Viewer</strong></a><strong> – </strong>It is  a lightweight plugin that displays images, divs and remote   pages,  through AJAX, inline on a page and on demand.</ul>
<ul><strong>28. </strong><a href="http://herr-schuessler.de/blog/jquerypopeye-an-inline-lightbox-alternative/" target="_blank"><strong>jQuery.popeye</strong></a><strong> – </strong> It is a jQuery plugin that converts an unordered list of  images into   a simple image gallery. When an image is clicked, it  enlarges just like   with LightBox.</ul>
<ul>
<h3>FORM   ELEMENTS AND VALIDATION</h3>
</ul>
<ul><strong>29. </strong><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" target="_blank"><strong>jQuery  Form Validation</strong></a><strong> – </strong> It is a jQuery  plugin that is fast, unobtrusive, scalable and easy to   use validation  plug in that offers a variety of methods for all types   of validation  needs.  It comes from the very basic to the more   complex schemes of  validation.</ul>
<ul><strong>30. </strong><a href="http://jqueryfordesigners.com/demo/ajax-validation.php" target="_blank"><strong>Ajax  Form Validation</strong></a><strong> – </strong> This refers to  the client aspect of validation using Javascript.    The username will  perform the validation by checking with the server   whether a chosen  username is available and valid.</ul>
<ul><strong>31. </strong><a href="http://itgroup.com.ph/alphanumeric/" target="_blank"><strong>jQuery  AlphaNumeric</strong></a><strong> – </strong> It is a jQuery  plugin that uses javascript to allow you to control what   characters a  user can use and enter on text areas and text boxes.</ul>
<ul><strong>32. </strong><a href="http://jquery.sanchezsalvador.com/page/jquerycombobox.aspx" target="_blank"><strong>jQuery.combobox    –</strong></a><strong> </strong> It is a jQuery plugin that  provides a simple way of producing an HTML   type of combobox from the  existing HTML Select tags.  This plug   in was created to provide the  solution on the limitation in styling   of standard Select tag.</ul>
<ul><strong>33. </strong><a href="http://kawika.org/jquery/checkbox/" target="_blank"><strong>jQuery  Checkbox</strong></a><strong> – </strong> It is a jQuery plugin  that creates a replacement for the standard checkbox.    This plugin  allows you to modify the look of the elements of the checkbox   in the  page.</ul>
<ul><strong>34. </strong><a href="http://www.appelsiini.net/projects/filestyle" target="_blank"><strong>File Style Plugin</strong></a><strong> – </strong> It is a jQuery plugin that solves your problem with  browsers that does   let you style file inputs.  This jQuery plugin also  allows you   to style filename field to normal textfield by using css.</ul>
<ul><strong>35. </strong><a href="http://www.protofunc.com/scripts/jquery/checkbox-radiobutton/" target="_blank"><strong>Radio  Button and Check   Box Replacement</strong></a><strong> – </strong>This  tool of jQuery replaces the check boxes and radio buttons   with a more  attractive display.</ul>
<ul><strong>36. </strong><a href="http://nettuts.com/javascript-ajax/submit-a-form-without-page-refresh-using-jquery/" target="_blank"><strong>Submit  a Form Without   Page Refresh</strong></a><strong> – </strong>By  using jQuery, you not only can add form validation to wordpress    comments without any page reload but also submit your form without a    page refresh.</ul>
<ul><strong>37. </strong><a href="http://midmodesign.com/news/coding/jquery-ajax-contact-form-with-honeypot/" target="_blank"><strong>jQuery  AJAX Contact Form</strong></a><strong> – </strong> Users of  jQuery can make an AJAX contact form with a “honeypot”   to foil email  bots, load success and error messages without leaving   the page and  provides descriptive error messages detailing the reasons   for the  failed validation of the submitted value.</ul>
<ul><strong>38. </strong><a href="http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html" target="_blank"><strong>jQuery  Form Validation</strong></a><strong> – </strong> This form of  jQuery can show form-input validators both the browser-side   and  server-side</ul>
<ul>
<h3>STAR RATING</h3>
</ul>
<ul><strong>39. </strong><a href="http://php.scripts.psu.edu/rja171/widgets/rating.php" target="_blank"><strong>Simple  Star Rating System</strong></a><strong> – </strong> It is a  jQuery plugin used for star rating system.  This jQuery   system was  created with the basic framework of the star rating system   of Wil  Stuckey.  This jQuery plugin provides the solution on the   problem of  the original script requiring too much coding.  It also   did away with  the requirement for developing a star system.</ul>
<ul><strong>40. </strong><a href="http://www.learningjquery.com/2007/05/half-star-rating-plugin" target="_blank"><strong>Half  Star Rating Plugin</strong></a><strong> – </strong> It is a  jQuery plugin that was developed in response to the clamor for   an  enhancement of the simple rating system of Ritesh Agrawal and allow    for the use of half-star rating system.</ul>
<ul>
<h3>TABLE PLUGINS</h3>
</ul>
<ul><strong>41. </strong><a href="http://tablesorter.com/docs/#Demo" target="_blank"><strong>Table  Sorter Plugin</strong></a><strong> – </strong> It is a jQuery  plugin that is used to turn a standard HTML table with   TBODY and THEAD  tags into a table which is sortable without resorting   to page  refreshes.  This jQuery plugin can effectively sort and   parse multiple  data including data in a cell that are linked.</ul>
<ul><strong>42. </strong><a href="http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php" target="_blank"><strong>Autoscroll  Plugin for   jQuery</strong></a><strong> – </strong>It is a  jQuery plugin that provides for hotspot scrolling of   webpages.  This  jQuery plugin will still work even with earlier   versions of jQuery.</ul>
<ul><strong>43. </strong><a href="http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html" target="_blank"><strong>Scrollable  HTML Table   Plugin</strong></a><strong> – </strong>It is a  jQuery plugin that is used to convert HTML tables into   scrollable  tables.  This jQuery plugin solution does not require   any additional  coding.</ul>
<ul><strong>44. </strong><a href="http://pure-essence.net/stuff/webTips/jqueryTableRowCheckboxToggle.html" target="_blank"><strong>Table  Row CheckBox Toggle</strong></a><strong> – </strong> This jQuery  tool adds a toggle function to any table row that you specify   based  on a CSS class name.  This tool will toggle on by default   any check  boxes within that table row.</ul>
<ul><strong>45. </strong><a href="http://tablesorter.com/docs/" target="_blank"><strong>Tablesorter</strong></a><strong> – </strong> This is a jQuery plugin that allows you to turn a standard  HTML table   with &lt;td&gt; and &lt;th&gt; tags to a sortable table  without refreshing   the page.  This plugin can successfully parse and  sort many kinds   of data in a cell.</ul>
<ul><strong>46. </strong><a href="http://dev.iceburg.net/jquery/tableEditor/demo.php" target="_blank"><strong>TableEditor</strong></a><strong> – </strong> This tool allows flexible in-place editing of HTML tables.  Users can   easily drop handler functions to update.</ul>
<ul>
<h3>ROUNDED CORNERS</h3>
</ul>
<ul><strong>47. </strong><a href="http://blue-anvil.com/jquerycurvycorners/test.html" target="_blank"><strong>jQuery  Curvy Corners</strong></a><strong> – </strong> It is a jQuery  plugin that allows for the creation of nice looking rounded   corners  without the use of images.  It is a jQuery plugin considered   to be  unobtrusive and can work well with all major browsers which include    iPhone.  Another nice feature about this jQuery plugin is that   the  corners to be rounded and its radius can be set easily.</ul>
<ul>
<h3>OTHER JQUERY PLUGINS</h3>
</ul>
<ul><strong>48. </strong><a href="http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm" target="_blank"><strong>HeatColor  Plugin</strong></a><strong> – </strong> It is a jQuery plugin  that provides color to elements and determined   by a value derived from  that element.  This derived value comes   from a range of value which  are either pre-designated or passed in.    The element is then assigned a  “heat” color which is derived from   the position of the value within  the range of values.</ul>
<ul><strong>49. </strong><a href="http://kelvinluck.com/assets/jquery/datePicker/v2/demo/" target="_blank"><strong>jQuery  Date Picker</strong></a><strong> – </strong> It is a jQuery  plugin that is considered unobtrusive and clean.    It adds date-entry  functionality to web forms and pages.  It was   created from the basics  up in order to attain flexibility and extensibility.    It has varied  options of use that allow you to all a calendar widgets   to web pages  and forms.</ul>
<ul>
<h3>DYNAMIC CONTENT</h3>
</ul>
<ul><strong>50. </strong><a href="http://nettuts.com/javascript-ajax/build-a-top-panel-with-jquery/" target="_blank"><strong>Create    a Log-in Form with jQuery</strong></a><strong> – </strong>One  can create a sliding panel that slides in to reveal new   content and  animate the height of the panel through jQuery.</ul>
<ul><strong>51. </strong><a href="http://css-tricks.com/examples/SpoilerRevealer/" target="_blank"><strong>Spoiler Revealer with   jQuery</strong></a><strong> – </strong>This is a technique in jQuery that can hide and reveal  content   with animation effect once it is clicked.</ul>
<ul><strong>52. </strong><a href="http://valums.com/projects/ajax-upload/" target="_blank"><strong>AJAX Upload</strong></a><strong> – </strong> It is a jQuery plugin that provides for easy uploading of  multiple files   without having to refresh the page.  This plugin also  allows the   use of any element to trigger the file selection window.</ul>
<ul><strong>53. </strong><a href="http://www.emposha.com/javascript/jquery/jquerymultiselect.html" target="_blank"><strong>FCBKcomplete</strong></a><strong> – </strong> jQuery also provides users with Facebook-like dynamic  inputs along pre-added   and auto-complete values.</ul>
<ul><strong>54. </strong><a href="http://www.filamentgroup.com/lab/creating_accessible_charts_using_canvas_and_jquery" target="_blank"><strong>Create  Accessible Charts   Using jQuery and Canvas</strong></a><strong> – </strong>Users of jQuery can use the &lt;canvas&gt; element to  illustrate   HTML table data.  This technique makes data in a table  accessible   and while the chart is being shown for visual improvement.</ul>
<ul>
<h3>MANIPULATING CONTENT</h3>
</ul>
<ul><strong>55. </strong><a href="http://nettuts.com/tutorials/javascript-ajax/create-an-amazoncom-books-widget-with-jquery-and-xml/" target="_blank"><strong>jQuery  Books Widget</strong></a><strong> – </strong> One can use jQuery  with some custom Javascript to create interesting   widgets like a  browsable Amazon.com books widget.</ul>
<ul><strong>56. </strong><a href="http://nettuts.com/tutorials/javascript-ajax/use-the-jquery-ui-to-control-the-size-of-your-text/" target="_blank"><strong>Text  Size Slider</strong></a><strong> – </strong> Users of jQuery can  control the text size of an article on a page using   a slider.  This  feature of jQuery allows the user to control exactly   the size they  prefer and is a very impressive feature to have on a site.</ul>
<ul><strong>57. </strong><a href="http://plugins.jquery.com/project/pagination" target="_blank"><strong>Pagination</strong></a><strong> – </strong> Users of jQuery can group large numbers of items into pages  and present   navigational elements that allow users to move easily  from one page   to another.</ul>
<ul><strong>58. </strong><a href="http://www.ndoherty.com/demos/coda-slider/1.1.1/" target="_blank"><strong>Coda-Slider</strong></a><strong> – </strong> This jQuery tool also groups items together through  navigational elements   that allow users to traverse the pages.</ul>
<ul><strong>59. </strong><a href="http://css-tricks.com/creating-a-slick-auto-playing-featured-content-slider/" target="_blank"><strong>Slick  Auto-Playing Featured-Content   Slider</strong></a><strong> – </strong>This  jQuery plugin allows users to cycle through panels and   auto-playing  different kinds of custom content.  It features an   arrow indicator to  guide users on which panel he is currently viewing.</ul>
<ul>
<h3>BROWSER TWEAKS</h3>
</ul>
<ul><strong>60. </strong><a href="http://www.filamentgroup.com/lab/setting_equal_heights_with_jquery/" target="_blank"><strong>Setting  Equal Heights   with Query</strong></a><strong> – </strong>Through  jQuery, users can utilize a script that can equalize   the box heights  within the same container to create a tidy grid.</ul>
<ul><strong>61. </strong><a href="http://www.emposha.com/javascript/jquery-ie6-png-transperency-fix.html" target="_blank"><strong>jQuery  IE6 PNG Transparency   Fix</strong></a><strong> – </strong>This  is a bug fix that uses jQuery selectors to automatically   fix all PNG  images in a page.</ul>
<ul><strong>62. </strong><a href="http://plugins.jquery.com/project/bgiframe" target="_blank"><strong>BGI Frame</strong></a><strong> – </strong> This jQuery tool helps users in dealing with IE z-index  issues.</ul>
<ul><strong>63. </strong><a href="http://remysharp.com/2008/01/21/fixing-ie-overflow-problem/" target="_blank"><strong>Fix  Overflow</strong></a><strong> – </strong> This jQuery bug fix  solves the issue on the scroll bar covering overflowing   elements when  the element is only one line.</ul>
<ul><strong>64. </strong><a href="http://plugins.jquery.com/project/lazyload" target="_blank"><strong>Lazy Load</strong></a><strong> – </strong> This tool can delay the loading of images below the fold on  long pages,   loading the images only when the user scrolls down on  that part of the   page.</ul>
<ul><strong>65. </strong><a href="http://remysharp.com/2008/06/30/maxlength-plugin/" target="_blank"><strong>Maxlength</strong></a><strong> – </strong> This jQuery plugin automatically limits the number of  characters a user   can input in a field and giving feedback on how many  spaces are remaining.</ul>
<ul>
<h3>ANIMATION EFFECTS</h3>
</ul>
<ul><strong>66. </strong><a href="http://www.flowplayer.org/tools/scrollable.html" target="_blank"><strong>Scrollable</strong></a><strong> – </strong> It is a lightweight and flexible jQuery plug-in used to  create a scrollable   content.  It can contain any HTML, including  images, forms, text,   video or a combination of any of them.</ul>
<ul><strong>67. </strong><a href="http://css-tricks.com/learning-jquery-fading-menu-replacing-content/" target="_blank"><strong>Fading  Menu-Replacing   Content</strong></a><strong> – </strong>This  jQuery tool lets users to utilize animation and change   the way to  style a page on-the-fly to react to events that happen on   your page.</ul>
<ul><strong>68. </strong><a href="http://css-tricks.com/jquery-robot/" target="_blank"><strong>Build  an Animated Cartoon   Robot with jQuery</strong></a><strong> – </strong>jQuery  is able to provide an animation effect that simulates   a faux 3-D  animated background just like what are seen on scrolling   video games.</ul>
<ul>
<h3>TOP jQUERY TIPS</h3>
</ul>
<ul><strong>69. </strong><a href="http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup" target="_blank"><strong>Prevent  Animation Queue   Build-up</strong></a><strong> – </strong>Through  jQuery, this natural queuing of animations is easy to   code and user  can move on to other important tasks</ul>
<ul><strong>70. </strong><a href="http://www.cssnewbie.com/advanced-jquery-tabbed-box-techniques/" target="_blank"><strong>Rotate  Through Tabbed   Content</strong></a><strong> – </strong>Through  this functionality of jQuery, the movement is more likely   to catch  the user’s eyes, thus increasing the chances they will notice   the  tabbed box and allow the user to see all the content of the box    instead of just the first tab.</ul>
<ul><strong>71. </strong><a href="http://www.cssnewbie.com/advanced-jquery-tabbed-box-techniques/" target="_blank"><strong>Stopping  the Rotation</strong></a><strong> – </strong> This technique  allows users to stop the rotating of tabs and stop it   from switching  when you are interacting with them.  The technique   involves some  editing a couple of lines from the document ready function.</ul>
<ul><strong>72. </strong><a href="http://www.cssnewbie.com/build-a-tabbed-box-with-css-and-jquery/" target="_blank"><strong>Build a  Tabbed Content   with CSS and jQuery</strong></a><strong> – </strong>This  technique outlines the steps required to easily customize   to fit the  size and color scheme, use fixed or variable height, automatically    rotate through the tabs and stop the rotation when the user needs to.</ul>
<ul><strong>73. </strong><a href="http://www.cssnewbie.com/advanced-css-accordion-effect/" target="_blank"><strong>Advanced  CSS Accordion   Effect</strong></a><strong> – </strong>This  technique is improved by the use of Javascript and all   browsers will  handle this technique even without JS enabled.</ul>
<ul><strong>74. </strong><a href="http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/" target="_blank"><strong>Consistent  Base Font   Size</strong></a><strong> – </strong>This is the  best jQuery technique to gain control over your   font sizes until IE  finally support the resizing of text in pixels.</ul>
<ul><strong>75. </strong><a href="http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/" target="_blank"><strong>Maintain  Consistent Margins</strong></a><strong> – </strong> This jQuery  technique enables users to remove the margin and padding   from every  element instead of CSS resets.</ul>
<ul><strong>76. </strong><a href="http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/" target="_blank"><strong>Set a  Float to Clear   a Float</strong></a><strong> – </strong>This  jQuery is one of the most important things to understand   with CSS.   However, it is also important to learn how to clear   floats.</ul>
<ul><strong>77. </strong><a href="http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/" target="_blank"><strong>Image  Replacement</strong></a><strong> – </strong> This image  replacement technique involves the positioning an image over   the top  of the HTML.  One feature of this technique is that even   when images  are disabled, the text is still visible.</ul>
<ul><strong>78. </strong><a href="http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/" target="_blank"><strong>Faux  Columns</strong></a><strong> – </strong> This technique allows 2  adjacent columns with unequal amounts of content   to have 1px tall  background image being repeated vertically in the containing   element  of the 2 columns.</ul>
<ul><strong>79. </strong><a href="http://www.incg.nl/blog/2008/hover-block-jquery/" target="_blank"><strong>Animate a Hover with   jQuery</strong></a><strong> – </strong>This technique allows users to animate an image while  hovering   over it and allow users to see information while doing that</ul>
<ul><strong>80. </strong><a href="http://snook.ca/archives/javascript/jquery-bg-image-animations/" target="_blank"><strong>Background  Image Animation   Using jQuery</strong></a><strong> – </strong>This  technique involves producing animation effects by changing   the  position of the background image.</ul>
<ul><strong>81. </strong><a href="http://www.shopdev.co.uk/blog/animated-menus-using-jquery/" target="_blank"><strong>Animated  Menu using jQuery</strong></a><strong> – </strong> This  technique involves the use of animated menu using CSS, XHTML and    javascript.</ul>
<ul><strong>82. </strong><a href="http://nettuts.com/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/" target="_blank"><strong>Create  an Animated Navigation   with CSS and jQuery</strong></a><strong> – </strong>This technique provides for the creation of a cool  navigation   enhanced with animation effect and visual feedback.</ul>
<ul><strong>83.</strong><a href="http://nettuts.com/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/" target="_blank"><strong>Load  in and Animate Content   with jQuery</strong></a><strong> – </strong>This  technique uses AJAX functionality so that the content loads   into the  relevant container instead of having to navigate to another   page.</ul>
<ul><strong>84. </strong><a href="http://www.learningjquery.com/2009/02/implementing-prototypes-array-methods-in-jquery" target="_blank"><strong>Implementing  Prototype’s   Array Methods in jQuery</strong></a><strong> – </strong>This  technique gives a particular array all the methods that   Prototype  adds to their Array and Enumerable objects.</ul>
<ul><strong>85. </strong><a href="http://www.learningjquery.com/2009/03/43439-reasons-to-use-append-correctly" target="_blank"><strong>43,439  Reasons to Use   Append() Correctly</strong></a><strong> – </strong>This  technique provides for the proper way of using this jQuery   method.   Although an extremely easy and useful method to work with,   it can  significantly affect the performance of the page.</ul>
<ul><strong>86. </strong><a href="http://davidherron.com/blog/topics/999-collapsable-content-using-jquery" target="_blank"><strong>Collapsible  Content Using   jQuery</strong></a><strong> – </strong>This  technique provides the steps in having the content collapsible   through  simple jQuery codes.</ul>
<ul><strong>87. </strong><a href="http://marcgrabanski.com/article/5-tips-for-better-jquery-codehttp:/www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx#tip6" target="_blank"><strong>Minimize  Manipulation   of DOM</strong></a><strong> – </strong>We can  further make the code faster if we cut down on the frequency   that we  insert into the DOM.  Insertion operations of DOM will   make things  slow down.</ul>
<ul><strong>88. </strong><a href="http://marcgrabanski.com/article/5-tips-for-better-jquery-codehttp:/www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx" target="_blank"><strong>Give  context to your   selectors</strong></a><strong> – </strong>When  you use the selector, the entire DOM will be traversed   as a result of  the action.  This can be a very expensive process.</ul>
<ul>
<h3>jQUERY TUTORIALS</h3>
</ul>
<ul><strong>89. </strong><a href="http://docs.jquery.com/Tutorials:How_jQuery_Works" target="_blank"><strong>How jQuery Works</strong></a><strong> – </strong> This is a featured tutorial on jQuery by John Resig, the  creator of   jQuery.  This is an ideal basic tutorial for those who are  starting   to learn jQuery for the first time.</ul>
<ul><strong>90. </strong><a href="http://15daysofjquery.com/" target="_blank"><strong>jQuery  in 15 Days</strong></a><strong> – </strong> This is a 15 day  tutorial that turns you from a greenhorn to an expert   in 15 days.</ul>
<ul><strong>91. </strong><a href="http://bassistance.de/" target="_blank"><strong>Bassistance</strong></a><strong> – </strong> This tutorial covers the basics of jQuery up to the more  advanced topic   like building plugins.</ul>
<ul><strong>92. </strong><a href="http://remysharp.com/" target="_blank"><strong>Remy Sharp’s Blog</strong></a><strong> – </strong> He has written numerous tutorials and plugins and he is  also the person   responsible for the very helpful <a href="http://jqueryfordesigners.com/" target="_blank">jQueryForDesigners</a> website which also provides useful tutorials   in answer to request of  readers.</ul>
<ul><strong>93. </strong><a href="http://css-tricks.com/" target="_blank"><strong>CSS  Tricks</strong></a><strong> – </strong> This reference site is  full of examples, tips, tricks, tutorials and   news about cascading  style sheets (CSS).</ul>
<ul><strong>94. </strong><a href="http://colorcharge.com/jquery/" target="_blank"><strong>jQuery  Cheat Sheets</strong></a><strong> – </strong> It provides to  aspects of cheat sheets.  These are: those made   for iPod and other  mobile devices; and those with the A4 cheat sheet.</ul>
<ul><strong>95. </strong><a href="http://www.noupe.com/tutorial/51-best-of-jquery-tutorials-and-examples.html" target="_blank"><strong>How  to Build jQuery Plugins</strong></a><strong> – </strong> One can  try any of the following tutorials: A <a href="http://www.learningjquery.com/2007/10/a-plugin-development-pattern" target="_blank">Plugin  Development Pattern</a>; <a href="http://snook.ca/archives/javascript/jquery_plugin/" target="_blank">Developing   a  jQuery Plugin</a>; and <a href="http://blog.jeremymartin.name/2008/02/building-your-first-jquery-plugin-that.html" target="_blank">Building your  First jQuery   Plugin</a>.</ul>
<ul><strong>96. </strong><a href="http://webexpose.org/2006/12/28/jquery-pop-up-menu-tutorial/" target="_blank"><strong>jQuery  Pop-up Menu Tutorial</strong></a><strong> – </strong> This is a  tutorial material that focuses on pop-up link menu.</ul>
<ul><strong>97. </strong><a href="http://errtheblog.com/posts/73-the-jskinny-on-jquery" target="_blank"><strong>The  jSkinny on jQuery</strong></a><strong> – </strong> It is a  tutorial that covers jQuery javascript library.</ul>
<ul><strong>98. </strong><a href="http://docs.jquery.com/Tutorials:How_to_Get_Anything_You_Want" target="_blank"><strong>How to  Get Anything You   Want</strong></a><strong> – </strong>This is  an introductory tutorial on traversal methods and jQuery   selectors and  their use in DOM navigation</ul>
<ul><strong>99. </strong><a href="http://jqueryfordesigners.com/its-all-about-css/" target="_blank"><strong>It’s all about CSS</strong></a><strong> – </strong> As<strong> </strong>the title suggests, this tutorial is  all about CSS selectors.    Once you learn from this tutorial, you can  now easily query the DOM.</ul>
<ul><strong>100. </strong><a href="http://www.digital-web.com/articles/jquery_crash_course/" target="_blank"><strong>jQuery  Crash Course</strong></a><strong> – </strong> This tutorial is  designed for web designers with advanced knowledge   of codes.</ul>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/jquery/100-popular-jquery-examples-plugins-and-tutorials/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JQuery Tutorials and examples</title>
		<link>http://witslog.com/wiki/technical/jquery/49</link>
		<comments>http://witslog.com/wiki/technical/jquery/49#comments</comments>
		<pubDate>Sat, 06 Mar 2010 23:29:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=49</guid>
		<description><![CDATA[Learn jQuery and master it in no time.

Introduction  to jQuery
jQuery is great library for developing ajax based application.  jQuery is     great library for the JavaScript programmers, which simplifies the     development of web 2.0 applications.
Downloading ...]]></description>
			<content:encoded><![CDATA[<p><strong>Learn jQuery and master it in no time.</strong></p>
<ol>
<li><a href="http://www.roseindia.net/ajax/jquery/whatisjquery.shtml"><strong>Introduction  to jQuery</strong></a><br />
jQuery is great library for developing ajax based application.  jQuery is     great library for the JavaScript <a id="KonaLink2" href="http://www.roseindia.net/ajax/jquery/#" target="undefined"><span style="color: blue;">programmers</span></a>, which simplifies the     development of web 2.0 applications.</li>
<li><a href="http://www.roseindia.net/ajax/jquery/downloadjquery.shtml"><strong>Downloading  and installing jQuery</strong></a><br />
In this section we will download and install jQuery for developing  our demo     application. jQuery comes as single js file.</li>
<li> <strong><a href="http://www.roseindia.net/ajax/jquery/jqueryservertime.shtml">Server  time Example</a></strong><br />
In this first jQuery tutorial we will develop a simple program that     retrieves the current time from <a id="KonaLink3" href="http://www.roseindia.net/ajax/jquery/#" target="undefined"><span style="color: blue;">server</span></a> and  displays on the user browser.</li>
<li> <strong><a href="http://www.roseindia.net/ajax/jquery/jqueryloadcontent.shtml">jQuery  Load Content</a></strong><br />
In this section you will learn how to load content of a text file  using     jQuery and show it on the use browser.</li>
<li> <strong><a href="http://www.roseindia.net/ajax/jquery/verticalImageSlider.shtml">jQuery  to Vertical Image Scroller<br />
</a></strong>In this first jQuery tutorial we will develop a  program  that vertical image scroller</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/toggleDiv.shtml">jQuery  Toggle the Div</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program that toggle the content of a Div<br />
</span></li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/TextfadingChanges.shtml">jQuery  to text changes with fading effect</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that  text Changes with fading effect.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/TextChanges.shtml">jQuery to  text changes with sliding effect</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that  text Changes with sliding effect.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/drop-down-menu.shtml">jQuery  Drop Down Menu</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program  to make Drop Down menu<br />
</span></li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/statetransition.shtml">jQuery  chain-able  state of transition</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program that changing the state of transition of box moving<br />
</span></li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/simpleTabs.shtml">jQuery To  Simple tabs</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program  to make simple tabs<br />
</span></li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/simpleImageScroll.shtml">jQuery  to Simple Image Scroller</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that simple  image scroller</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/sideEffectTabs.shtml">jQuery  To Slide Effects  tabs</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program  to make Custom  tabs<br />
</span></li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/randomArray.shtml">jQuery to  Show Data Randomly</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a simple  program that Show Data Randomly  from server and displays on the user browser. In this example we will be calling a server side PHP script to get the Random Data.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/jqueryPostData.shtml">jQuery  to Post Data Check</a><br />
</span></strong>In this first jQuery tutorial we will develop a simple  program that checking the data Post to server and displays on the user browser. In this  example we will be calling a server side PHP script .</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/imageSlider.shtml">jQuery to  Image Changes With Sliding Effect</a><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that  images Changes with sliding effect.</p>
<div>
	<ins><ins></ins></ins></div>
</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/imageMaginifier.shtml">jQuery  to Image Magnifier</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that  Image magnifier.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/imagefade.shtml">jQuery to  Image Changes With Fading Effect</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that  images Changes with fading effect.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/helloworld.shtml">jQuery to  &#8220;Hello World&#8221;</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this  jQuery tutorial we will develop a simple program  that print the Hello World  from server and displays on the user browser. In this  example we will be calling a server side PHP script to get the &#8220;text&#8221;.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/fadeEffectTabs.shtml">jQuery  To Fade Effects  tabs</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program  to make Fade Effect  tabs<br />
</span></li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/validate-email-address.shtml">jQuery  to validate Email Address</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this  jQuery tutorial we will develop a  program that  validate the email address  from server and displays on the user browser. In this  example we will be calling a server side PHP script to get the &#8220;result&#8221;.</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/hide-div.shtml">jQuery To  Hide the Div</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program that Hide of a Div<br />
</span></li>
<li> <strong><a href="http://www.roseindia.net/ajax/jquery/customTabs.shtml"><span style="color: #000080;">jQuery To Custom tabs</span></a><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program  to make Custom  tabs<br />
</span></li>
<li> <strong><a href="http://www.roseindia.net/ajax/jquery/multiple-check-box.shtml"><span style="color: #000080;">jQuery to Select Multiple CheckBox</span></a><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a simple  program that retrieves the value of selected checkbox from server and displays on the user  browser. In this example we will be calling a server side PHP script .</li>
<li> <strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/callbackTabs.shtml">jQuery To  callback tabs</a></span><span style="color: #000080; font-size: x-large;"><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program  to calling function on Tab<br />
</span></li>
<li> <strong><a href="http://www.roseindia.net/ajax/jquery/auto-image-scroll.shtml"><span style="color: #000080;">jQuery to Auto Image Scroller</span></a><span style="color: #000080; font-size: x-large;"><br />
</span></strong>In this first jQuery tutorial we will develop a  program  that auto image scroller</li>
<li><strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/no-max-height-fixed.shtml">No  Max-height Fixed</a><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program that Auto generate of a Textarea with minimum fixed height but  no max     height fixed.</span></li>
<li><strong><span style="color: #000080;"><a href="http://www.roseindia.net/ajax/jquery/fixed-max-height.shtml">With  Fixed Max-Height</a><br />
</span></strong><span style="color: #000080; font-size: small;">In this JQuery tutorial we  will develop a program that Auto generate of  textarea  with fixed Max-Height.</span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/jquery/49/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50+ Amazing Jquery Examples- Part1</title>
		<link>http://witslog.com/wiki/technical/jquery/50-amazing-jquery-examples-part1</link>
		<comments>http://witslog.com/wiki/technical/jquery/50-amazing-jquery-examples-part1#comments</comments>
		<pubDate>Sat, 06 Mar 2010 23:13:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=36</guid>
		<description><![CDATA[

 /*  */  if(window.OA_zones === undefined) { var OA_zones = []; }  OA_zones['Content Ad'] = 11;  /*  //  */
 // 
		  OA_show('Content Ad');
		//




* This post is regularly updated. *
Many of us have been using a good deal of...]]></description>
			<content:encoded><![CDATA[<div class="post-content-inner">
<div>
<div id="contentadcontainer"> <script type="text/javascript">/*  */  if(window.OA_zones === undefined) { var OA_zones = []; }  OA_zones['Content Ad'] = 11;  /*  //  */</script>
<div id="contentad"> <script type="text/javascript">// 
		  OA_show('Content Ad');
		//</script><a target="_blank" href="http://auslieferung.commindo-media-ressourcen.de/www/delivery/ck.php?oaparams=2__bannerid=15__zoneid=11__OXLCA=1__cb=01976d0624__oadest=http%3A%2F%2Fwww.wix.com%2Fstart%2Fwfree%2F%3Futm_campaign%3Dma_noupe.com%26experiment_id%3Dma_noupe.com301"><img width="300" height="250" border="0" title="" alt="" src="http://auslieferung.commindo-media-ressourcen.de/www/delivery/ai.php?filename=wix_pins2.jpg&amp;contenttype=jpeg"></a>
<div style="position: absolute; left: 0px; top: 0px; visibility: hidden;" id="beacon_01976d0624"><img width="0" height="0" style="width: 0px; height: 0px;" alt="" src="http://auslieferung.commindo-media-ressourcen.de/www/delivery/lg.php?bannerid=15&amp;campaignid=16&amp;zoneid=11&amp;loc=http%3A%2F%2Fwww.noupe.com%2Fjquery%2F50-amazing-jquery-examples-part1.html&amp;referer=http%3A%2F%2Fwww.google.co.in%2Fsearch%3Fhl%3Den%26client%3Dfirefox-a%26hs%3Dci3%26rls%3Dorg.mozilla%3Aen-GB%3Aofficial%26q%3Djquery+examples%26revid%3D1068260993%26ei%3DEeGSS42xC5CxrAfo3fmaCw%26sa%3DX%26oi%3Drevisions_inline%26resnum%3D0%26ct%3Dbroad-revision%26cd%3D2%26ved%3D0CDIQ1QIoAQ&amp;cb=01976d0624"></div>
</p></div>
</div>
</div>
<p><a href="http://www.noupe.com/ajax/50-amazing-jquery-examples-part1.html">* This post is regularly updated. *</a></p>
<p>Many of us have been using a good deal of jQuery plugins lately. Below I have provided a list of the 50 favorite plugins many developers use. Some of these you may have already seen, others might be new to you.&nbsp; This is just the first series , the second version will be coming soon, stay tuned and Enjoy!</p>
<p><span id="more-46"></span></p>
<hr class="dotted">
<h4 class="title">Menu</h4>
<p>1) <a href="http://gmarwaha.com/blog/?cat=8">LavaLamp</a></p>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/lavalamp.gif" alt="Lavalamp in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<p>2) <a href="http://www.webintenta.com/wp-content/uploads/file/JQueryCollapse.html">jQuery Collapse</a> -A plugin for jQuery to collapse content of div container.</p>
<hr class="dotted">
<p>3) <a href="http://blog.evaria.com/wp-content/themes/blogvaria/jquery/index-multi.php">A Navigation Menu</a>- Unordered List with anchors and nested lists, also demonstrates how to add a second level list.</p>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/j20.gif" alt="J20 in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<p>4) <a href="http://be.twixt.us/jquery/suckerFish.php">SuckerFish Style</a></p>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/j21.gif" alt="J21 in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<h4 class="title">Tabs</h4>
<p>5) <a href="http://stilbuero.de/jquery/tabs_3/">jQuery UI Tabs / Tabs 3</a> &ndash; Simple jQuery based tab-navigation</p>
<p><a href="http://stilbuero.de/jquery/tabs_3/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j12.gif" alt="J12 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>6) <a href="http://mattberseth.com/blog/2007/11/jquery_tabcontainer_theme_with.html">TabContainer Theme</a> &ndash; JQuery style fade animation that runs as the user navigates between selected tabs.</p>
<p><a href="http://stilbuero.de/jquery/tabs_3/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j23.gif" alt="J23 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">Accordion</h4>
<p>7 ) <a href="http://plugins.jquery.com/project/accordion">jQuery Accordion</a></p>
<p><a href="http://jquery.bassistance.de/accordion/?p=1.1.1">Demo <br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j22.gif" alt="J22 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p> <img src='http://witslog.com/wiki/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> <a href="http://www.i-marco.nl/weblog/jquery-accordion-menu/">Simple JQuery Accordion menu</a></p>
<p><a href="http://www.i-marco.nl/weblog/jquery-accordion-menu/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j35.gif" alt="J35 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">SlideShows</h4>
<p>9) <a href="http://www.mind-projects.it/blog/?page_id=14">jQZoom</a>- allows you to realize a small magnifier window close to the image or images on your web page easily.</p>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/j14.gif" alt="J14 in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<p>10) <a href="http://benjaminsterling.com/jquery-jqgalview-photo-gallery/">Image/Photo Gallery Viewer</a>- allows you to take a grouping of images and turn it into an flash-like image/photo gallery. It allows you to style it how ever you want and add as many images at you want.</p>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/j25.gif" alt="J25 in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<h4 class="title">Transition Effects</h4>
<p>11) <a href="http://medienfreunde.com/lab/innerfade/"> InnerFade </a> &ndash; It’s designed to fade you any element inside a container in and out.</p>
<p><a href="http://medienfreunde.com/lab/innerfade/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j13.gif" alt="J13 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>12) <a href="http://gsgd.co.uk/sandbox/jquery/easing/"> Easing Plugin</a>- A jQuery plugin from GSGD to give advanced easing options. Uses Robert Penners easing equations for the transitions</p>
<hr class="dotted">
<p>13) <a href="http://jquery.offput.ca/highlightFade/old.php">Highlight Fade</a></p>
<hr class="dotted">
<p>14) <a href="http://www.malsup.com/jquery/cycle/int2.html">jQuery Cycle Plugin</a>- have very intersting transition effects like image cross-fading and cycling.</p>
<p><a href="http://www.malsup.com/jquery/cycle/int2.html"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j24.gif" alt="J24 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">jQuery Carousel</h4>
<p>15) <a href="http://sorgalla.com/jcarousel/">Riding carousels with jQuery</a> &ndash;  is a jQuery plugin for controlling a list of items in horizontal or vertical order.</p>
<p><a href="http://sorgalla.com/jcarousel/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j9.gif" alt="J9 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">Color Picker</h4>
<p>16) <a href="http://acko.net/dev/farbtastic">Farbtastic</a> &ndash; is a jQuery plug-in that can add one or more color picker widgets into a page through JavaScript.</p>
<p><a href="http://acko.net/dev/farbtastic">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j36.gif" alt="J36 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>17) <a href="http://www.intelliance.fr/jquery/color_picker/">jQuery Color Picker</a></p>
<hr class="dotted">
<h4 class="title">LightBox</h4>
<p>18) <a href="http://jquery.com/demo/thickbox/">jQuery ThickBox</a> &ndash;  is a webpage user interface dialog widget written in JavaScript.</p>
<p><a href="http://jquery.com/demo/thickbox/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j10.gif" alt="J10 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>19) <a href="http://www.ericmmartin.com/simplemodal/">SimpleModal Demos</a> &ndash; its goal is providing developers with a cross-browser overlay and container that will be populated with content provided to SimpleModal.</p>
<p><a href="http://www.ericmmartin.com/simplemodal/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j17.gif" alt="J17 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>20) <a href="http://leandrovieira.com/projects/jquery/lightbox/">jQuery lightBox Plugin</a> &ndash; simple, elegant, unobtrusive, no need extra markup and is used to overlay images on the current page through the power and flexibility of jQuery´s selector.</p>
<p><a href="http://leandrovieira.com/projects/jquery/lightbox/#example">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j7.gif" alt="J7 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">iframe</h4>
<p>21) <a href="http://33rockers.com/jquery/iframe-demo/">JQuery iFrame Plugin</a> &ndash; If javascript is turned off, it will just show a link to the content. Here is the code in action…</p>
<p><a href="http://33rockers.com/jquery/iframe-demo/"> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j38.gif" alt="J38 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">Form Validation</h4>
<p>22) <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">Validation</a> &ndash;  A fairly comprehensive set of form validation rules. The plugin also dynamically creates IDs and ties them to labels when they are missing.</p>
<p><a href="http://jquery.bassistance.de/validate/demo/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/f9.gif" alt="F9 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>23) <a href="http://jqueryfordesigners.com/demo/ajax-validation.php">Ajax Form Validation</a> &ndash; Client side validation in a form using jQuery. The username will check with the server whether the chosen name is a) valid and b) available.</p>
<p><a href="http://jquery.bassistance.de/validate/demo-test/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j11.gif" alt="J11 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>24) <a href="http://itgroup.com.ph/alphanumeric/">jQuery AlphaNumeric</a> &ndash; Allows you to prevent your users from entering certain characters inside the form fields.</p>
<p><a href="http://itgroup.com.ph/alphanumeric/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j16.gif" alt="J16 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">Form Elements</h4>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/j15.gif" alt="J15 in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<p>25) <a href="http://jquery.sanchezsalvador.com/page/jquerycombobox.aspx">jquery.Combobox</a> &ndash;  is an unobtrusive way of creating a HTML type combobox from a existing HTML Select element(s), a <a href="http://jquery.sanchezsalvador.com/jquery/page/jquerycomboboxexamplealternatestyle.aspx">Demo is here.</a></p>
<hr class="dotted">
<p>26) <a href="http://kawika.org/jquery/checkbox/">jQuery Checkbox</a> &ndash; Provides for the styling of checkboxes that degrades nicely when javascript is dsiabled.</p>
<hr class="dotted">
<p>27) <a href="http://www.appelsiini.net/projects/filestyle">File Style Plugin for jQuery</a> -File Style plugin enables you to use image as browse button. You can also style filename field as normal textfield using css.</p>
<hr class="dotted">
<h4 class="title">Star Rating</h4>
<p><img src="http://media.smashingmagazine.com/cdn_noupe/img/j39.gif" alt="J39 in 50+ Amazing Jquery Examples- Part1"></p>
<hr class="dotted">
<p>28) <a href="http://php.scripts.psu.edu/rja171/widgets/rating.php">Simple Star Rating System</a></p>
<p>29)<a href="http://www.learningjquery.com/2007/05/half-star-rating-plugin">Half-Star Rating Plugin</a></p>
<hr class="dotted">
<h4 class="title">ToolTips</h4>
<p>30) <a href="http://plugins.jquery.com/project/tooltip"> Tooltip Plugin Examples</a> &ndash; A fancy tooltip with some custom positioning, a tooltip with an extra class for nice shadows, and some extra content. You can find a <a href="http://jquery.bassistance.de/tooltip/">demo here.</a></p>
<hr class="dotted">
<p>31) <a href="http://www.codylindley.com/blogstuff/js/jtip/">The jQuery Tooltip </a></p>
<p><a href="http://www.codylindley.com/blogstuff/js/jtip/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j4.gif" alt="J4 in 50+ Amazing Jquery Examples- Part1"></a></p>
<h4 class="title">Tables Plugins</h4>
<p>32) <a href="http://15daysofjquery.com/examples/zebra/"> Zebra Tables Demo </a>-using jQuery to do zebra striping and row hovering, very NICE!!</p>
<p><a href="http://15daysofjquery.com/examples/zebra/code/demoFinal.php">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j26.gif" alt="J26 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>33) <a href="http://tablesorter.com/docs/#Demo">Table Sorter Plugin </a>- for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. It can successfully parse and sort many types of data including linked data in a cell.</p>
<p><a href="http://tablesorter.com/docs/#Demo"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j27.gif" alt="J27 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>34) <a href="http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php">AutoScroll for jQuery</a> -allows for hotspot scrolling of web pages</p>
<p><a href="http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j42.gif" alt="J42 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>35) <a href="http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html">Scrollable HTML table plugin</a>- used to convert tables in ordinary HTML into scrollable ones. No additional coding is necessary.</p>
<p><a href="http://www.webtoolkit.info/demo/jquery/scrollable/demo.html">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j34.gif" alt="J34 in 50+ Amazing Jquery Examples- Part1"></a></p>
<h4 class="title">Draggable Droppables And Selectables</h4>
<p>36) <a href="http://interface.eyecon.ro/demos/sort.html"> Sortables </a>- You won’t believe how easy this code to make it easy to sort several lists, mix and match the lists, and send the information to a database.</p>
<p><a href="http://interface.eyecon.ro/demos/sort.html"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j28.gif" alt="J28 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>37) <a href="http://interface.eyecon.ro/demos/drag_drop_tree.html"> Draggables and droppables</a>- A good example of using jQuery plugin iDrop to drag and drop tree view nodes.</p>
<p><a href="http://interface.eyecon.ro/demos/drag_drop_tree.html"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j30.gif" alt="J30 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">Style Switcher</h4>
<p>38) <a href="http://www.kelvinluck.com/article/switch-stylesheets-with-jquery"> Switch stylesheets with jQuery</a>- allows your visitors to choose which stylesheet they would like to view your site with. It uses cookies so that when they return to the site or visit a different page they still get their chosen stylesheet. A <a href="http://www.kelvinluck.com/assets/jquery/styleswitch/">Demo is here.</a></p>
<hr class="dotted">
<h4 class="title">Rounded Corners</h4>
<p>39) <a href="http://methvin.com/jquery/jq-corner-demo.html"> jQuery Corner Demo</a></p>
<p><a href="http://methvin.com/jquery/jq-corner-demo.html"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j31.gif" alt="J31 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>40) <a href="http://blue-anvil.com/jquerycurvycorners/test.html"> JQuery Curvy Corners</a>- A plugin for rounded corners with smooth, anti-aliased corners.</p>
<p><a href="http://blue-anvil.com/jquerycurvycorners/test.html"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j40.gif" alt="J40 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<h4 class="title">Must See jQuery Examples</h4>
<p>41) <a href="http://www.digital-web.com/articles/jquery_crash_course/">jQuery Air</a> &ndash; A passenger management interface for charter flights. A great Tutorial that you will enjoy.</p>
<p><a href="http://www.digital-web.com/extras/jquery_crash_course/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j6.gif" alt="J6 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>42) <a href="http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm">HeatColor</a> -allows you to assign colors to elements, based on a value derived from that element.  The derived value is compared to a range of values, it can find the min and max values of the desired elements, or you can pass them in manually.</p>
<p><a href="http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j19.gif" alt="J19 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>43) <a href="http://markconstable.com/">Simple jQuery Examples</a> -This page contains a growing set of Query powered script examples in &#8220;pagemod&#8221; format. The code that is displayed when clicking &#8220;Source&#8221; is exactly the same Javascript code that powers each example. Feel free to save a copy of this page and use the example.</p>
<hr class="dotted">
<p>44) <a href="http://kelvinluck.com/assets/jquery/datePicker/v2/demo/">Date Picker</a> -A flexible unobtrusive calendar component for jQuery.</p>
<p><a href="http://kelvinluck.com/assets/jquery/datePicker/v2/demo/">Demo :<br /> <img src="http://media.smashingmagazine.com/cdn_noupe/img/j32.gif" alt="J32 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>45) <a href="http://www.freewebs.com/flesler/jQuery.ScrollTo/">ScrollTo</a> -A plugin for jQuery to scroll to a certain object in the page</p>
<hr class="dotted">
<p>46) <a href="http://methvin.com/jquery/splitter/3csplitter.html">3-Column Splitter Layout</a> -this is a 3-column layout using nested splitters. The left and right columns are a semi-fixed width; the center column grows or shrinks. Page scroll bars have been removed since all the content is inside the splitter, and the splitter is anchored to the bottom of the window using an onresize event handler.</p>
<p><a href="http://methvin.com/jquery/splitter/3csplitter.html"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j29.gif" alt="J29 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>47) <a href="http://rikrikrik.com/jquery/pager/">Pager jQuery</a> -Neat little jQuery plugin for a a paginated effect.</p>
<p><a href="http://rikrikrik.com/jquery/pager/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j33.gif" alt="J33 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p>48) <a href="http://www.texotela.co.uk/code/jquery/select/">Select box manipulation</a></p>
<hr class="dotted">
<p>49) <a href="http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/">Cookie Plugin for jQuery</a></p>
<p>50) <a href="http://malsup.com/jquery/block/">JQuery BlockUI Plugin</a> -lets you simulate synchronous behavior when using AJAX, without locking the browser. When activated, it will prevent user activity with the page (or part of the page) until it is deactivated. BlockUI adds elements to the DOM to give it both the appearance and behavior of blocking user interaction.</p>
<p><a href="http://malsup.com/jquery/block/"><img src="http://media.smashingmagazine.com/cdn_noupe/img/j41.gif" alt="J41 in 50+ Amazing Jquery Examples- Part1"></a></p>
<hr class="dotted">
<p class="postmetadata alt"><small>This entry was posted on Thursday, December 20th, 2007 at 6:55 am and is filed under <a rel="category tag" title="View all posts in jQuery" href="http://www.noupe.com/jquery">jQuery</a>.You can follow any responses to this entry through the <a href="http://www.noupe.com/jquery/50-amazing-jquery-examples-part1.html/feed">RSS 2.0</a> feed. Both comments and pings are currently closed.</small></p>
<div class="post-footer">
<div class="bsa-bottom-ad"></div>
<div id="related_posts"></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/jquery/50-amazing-jquery-examples-part1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery</title>
		<link>http://witslog.com/wiki/technical/jquery/jquery</link>
		<comments>http://witslog.com/wiki/technical/jquery/jquery#comments</comments>
		<pubDate>Sat, 06 Mar 2010 22:55:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://witslog.com/wiki/?p=16</guid>
		<description><![CDATA[jQuery is a lightweight cross-browser JavaScript library that emphasizes  interaction between JavaScript and HTML. It was  released in January 2006 at BarCamp NYC by John Resig. Used by over 27% of the 10,000 most visited  websites, jQuery is the most popular JavaScript...]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery</strong> is a lightweight <a title="Cross-browser" href="http://en.wikipedia.org/wiki/Cross-browser">cross-browser</a> <a title="JavaScript library" href="http://en.wikipedia.org/wiki/JavaScript_library">JavaScript library</a> that emphasizes  interaction between <a title="JavaScript" href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a> and <a title="HTML" href="http://en.wikipedia.org/wiki/HTML">HTML</a>. It was  released in January 2006 at <a title="BarCamp" href="http://en.wikipedia.org/wiki/BarCamp">BarCamp</a> NYC by <a title="John  Resig" href="http://en.wikipedia.org/wiki/John_Resig">John Resig</a>. Used by over 27% of the 10,000 most visited  websites, jQuery is the most popular JavaScript library in use today.<sup id="cite_ref-0"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-0">[1]</a></sup></p>
<p>jQuery is <a title="Free and open source software" href="http://en.wikipedia.org/wiki/Free_and_open_source_software">free, open source software</a>, <a title="Dual-licensing" href="http://en.wikipedia.org/wiki/Dual-licensing">dual-licensed</a> under the <a title="MIT License" href="http://en.wikipedia.org/wiki/MIT_License">MIT  License</a> and the <a title="GNU General Public License" href="http://en.wikipedia.org/wiki/GNU_General_Public_License#Version_2">GNU General Public License, Version 2</a>.<sup id="cite_ref-1"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-1">[2]</a></sup> jQuery&#8217;s syntax is designed to make it easier to navigate a document,  select DOM elements, create animations, handle events, and develop Ajax  applications. jQuery also provides capabilities for developers to create  <a title="Plugin" href="http://en.wikipedia.org/wiki/Plugin">plugins</a> on top of the JavaScript library.  Providing this option, developers are able to create abstractions for  low-level interaction and animation, advanced effects and high-level,  theme-able widgets. This contributes to the creation of powerful and  dynamic web pages.</p>
<p><a title="Microsoft" href="http://en.wikipedia.org/wiki/Microsoft">Microsoft</a> and <a title="Nokia" href="http://en.wikipedia.org/wiki/Nokia">Nokia</a> have announced plans to bundle jQuery on their platforms,<sup id="cite_ref-2008-09-28_2-0"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-2008-09-28-2">[3]</a></sup> Microsoft adopting it initially within <a title="Visual Studio" href="http://en.wikipedia.org/wiki/Visual_Studio">Visual Studio</a><sup id="cite_ref-3"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-3">[4]</a></sup> for use within Microsoft&#8217;s <a title="ASP.NET AJAX" href="http://en.wikipedia.org/wiki/ASP.NET_AJAX">ASP.NET  AJAX</a> framework and <a title="ASP.NET  MVC Framework" href="http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework">ASP.NET MVC Framework</a> whilst Nokia will integrate it  into their Web Run-Time platform.</p>
<p>The <a title="Seaside (software)" href="http://en.wikipedia.org/wiki/Seaside_%28software%29">Seaside</a> framework provides full  integration of JQuery allowing to write web applications entirely in <a title="Smalltalk" href="http://en.wikipedia.org/wiki/Smalltalk">Smalltalk</a>.</p>
<h2>Features</h2>
<p>jQuery contains the following features:</p>
<ul>
<li><a title="Document Object Model" href="http://en.wikipedia.org/wiki/Document_Object_Model">DOM</a> element selections using the  cross-browser open source selector engine <a rel="nofollow" href="http://sizzlejs.com/">Sizzle</a>, a spin-off out of the  jQuery project<sup id="cite_ref-4"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-4">[5]</a></sup></li>
<li>DOM traversal and modification (including support for CSS 1-3)</li>
<li>Events</li>
<li><a title="Cascading Style Sheets" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> manipulation</li>
<li>Effects and animations</li>
<li><a title="Ajax (programming)" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a></li>
<li><a title="Extensibility" href="http://en.wikipedia.org/wiki/Extensibility">Extensibility</a> through plugins</li>
<li>Utilities &#8211; such as browser version and the <code lang="jQuery" xml:lang="jQuery">each</code> function.</li>
</ul>
<h2>[<a title="Edit section: Use" href="http://en.wikipedia.org/w/index.php?title=JQuery&amp;action=edit&amp;section=2">edit</a>] Use</h2>
<p>jQuery usually exists as a single JavaScript file, containing all the  common DOM, Event, Effects, and Ajax functions. It can be included  within a web page using the following mark-up:</p>
<div dir="ltr">
<div>
<pre>&lt;script type="text/javascript" src="jQuery.js"&gt;&lt;/script&gt;
</pre>
</div>
</div>
<p>jQuery can also be accessed, loaded, and run just as JavaScript has  always been<sup id="cite_ref-5"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-5">[6]</a></sup>:</p>
<p>jQuery can also be loaded using the <a title="Google AJAX  APIs" href="http://en.wikipedia.org/wiki/Google_AJAX_APIs">Google AJAX Libraries API</a> with the following mark-up<sup id="cite_ref-6"><a href="http://en.wikipedia.org/wiki/JQuery#cite_note-6">[7]</a></sup>:</p>
<div dir="ltr">
<div>
<pre>&lt;script type="text/javascript" src="http://www.google.com/jsapi"&gt;&lt;/script&gt;
&lt;script&gt;
google.load("jquery", "1.3.2");
&lt;/script&gt;
</pre>
</div>
</div>
<p>Microsoft hosted jQuery on its AJAX CDN (<a title="Content delivery network" href="http://en.wikipedia.org/wiki/Content_delivery_network">Content delivery network</a>) making it  easy to add the support for jQuery library. CDN serves JavaScript  libraries from one of thousands of geo-located edge-cache servers around  the world hosted by Microsoft.</p>
<div dir="ltr">
<div>
<pre>&lt;script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.1.min.js" type="text/javascript"&gt;&lt;/script&gt;
</pre>
</div>
</div>
<p>jQuery has two styles of interaction:</p>
<ul>
<li>via the <code lang="jQuery" xml:lang="jQuery">$</code> function,  which is a <a title="Factory method pattern" href="http://en.wikipedia.org/wiki/Factory_method_pattern">factory method</a> for the jQuery  object. These functions, often called <em>commands</em>, are <a title="Method  chaining" href="http://en.wikipedia.org/wiki/Method_chaining"><em>chainable</em></a>; they each return the jQuery object</li>
<li>via <code lang="jQuery" xml:lang="jQuery">$.</code>-prefixed  functions. These are <em>utility functions</em> which do not work on the  jQuery object per se.</li>
</ul>
<p>A typical workflow for manipulation of multiple DOM nodes begins with  the <code lang="jQuery" xml:lang="jQuery">$</code> function being  called with a CSS selector string, which results in the jQuery object  referencing zero or more elements in the HTML page. This node set can be  manipulated by applying instance methods to the jQuery object, or the  nodes themselves can be manipulated. For example:</p>
<div dir="ltr">
<div>
<pre>$("div.test").add("p.quote").addClass("blue").slideDown("slow");
</pre>
</div>
</div>
<p>&#8230;finds the union of all <code lang="HTML" xml:lang="HTML">div</code> tags with class attribute <code lang="HTML" xml:lang="HTML">test</code> and all <code lang="HTML" xml:lang="HTML">p</code> tags with CSS class  attribute <code lang="HTML" xml:lang="HTML">quote</code>, adds the class  attribute <code lang="HTML" xml:lang="HTML">blue</code> to each matched  element, and then slides them down with an animation. The <code lang="jQuery" xml:lang="jQuery">$</code> and <code lang="jQuery" xml:lang="jQuery">add</code> functions affect the matched set, while the <code lang="jQuery" xml:lang="jQuery">addClass</code> and <code lang="jQuery" xml:lang="jQuery">slideDown</code> affect the referenced  nodes.</p>
<p>The methods prefixed with <code lang="jQuery" xml:lang="jQuery">$.</code> are convenience methods or affect global properties and behaviour. For  example, the following is an example of the <a title="Map (higher-order function)" href="http://en.wikipedia.org/wiki/Map_%28higher-order_function%29">map function</a> called <code lang="jQuery" xml:lang="jQuery">each</code> in jQuery:</p>
<div dir="ltr">
<div>
<pre>$.each([1,2,3], function() {
  document.write(this + 1);
});
</pre>
</div>
</div>
<p>&#8230; writes the numbers 234 to the document.</p>
<p>It is possible to perform browser-independent <a title="Ajax  (programming)" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a> queries using <code lang="jQuery" xml:lang="jQuery">$.ajax</code> and associated methods to load and  manipulate remote data.</p>
<div dir="ltr">
<div>
<pre>$.ajax({
  type: "POST",
  url: "some.php",
  data: "name=John&amp;location=Boston",
  success: function(msg){
    alert( "Data Saved: " + msg );
  }
});
</pre>
</div>
</div>
<p>&#8230; will request <code>some.php</code> from the server with  parameters <code>name=John</code> and <code>location=Boston</code> and  when the request is finished successfully, the success function will be  called to alert the user.</p>
<h2>[<a title="Edit section: Release history" href="http://en.wikipedia.org/w/index.php?title=JQuery&amp;action=edit&amp;section=3">edit</a>] Release history</h2>
<table border="0">
<tbody>
<tr>
<th>Release date</th>
<th>Version number</th>
<th>Additional notes</th>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2006/08/26/jquery-10/">August 26, 2006</a></td>
<td>1.0</td>
<td>First Stable Release</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2006/08/31/jquery-101/">August 31, 2006</a></td>
<td>1.0.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2006/10/09/jquery-102/">October 9, 2006</a></td>
<td>1.0.2</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2006/10/27/jquery-103/">October 27, 2006</a></td>
<td>1.0.3</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2006/12/12/jquery-104/">December 12, 2006</a></td>
<td>1.0.4</td>
<td>Last 1.0 bug fix</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/01/14/jquery-birthday-11-new-site-new-docs/">January 14, 2007</a></td>
<td>1.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/01/22/jquery-111/">January 22, 2007</a></td>
<td>1.1.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/02/27/jquery-112/">February 27, 2007</a></td>
<td>1.1.2</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/07/01/jquery-113-800-faster-still-20kb/">July 1, 2007</a></td>
<td>1.1.3</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/07/05/jquery-1131/">July 5, 2007</a></td>
<td>1.1.3.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/08/24/jquery-114-faster-more-tests-ready-for-12/">August 24, 2007</a></td>
<td>1.1.4</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/09/10/jquery-12-jqueryextendawesome/">September 10, 2007</a></td>
<td>1.2</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2007/09/16/jquery-121-quick-fixes-for-12/">September 16, 2007</a></td>
<td>1.2.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2008/01/15/jquery-122-2nd-birthday-present/">January 15, 2008</a></td>
<td>1.2.2</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/">February 8, 2008</a></td>
<td>1.2.3</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://docs.jquery.com/Release:jQuery_1.2.4">May 19, 2008</a></td>
<td>1.2.4</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://docs.jquery.com/Release:jQuery_1.2.5">May 21, 2008</a></td>
<td>1.2.5</td>
<td>Fix for bad build of 1.2.4</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://docs.jquery.com/Release:jQuery_1.2.6">May 24, 2008</a></td>
<td>1.2.6</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/">January 14, 2009</a></td>
<td>1.3</td>
<td>Sizzle Selector Engine introduced into core</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://blog.jquery.com/2009/01/21/jquery-131-released/">January 21, 2009</a></td>
<td>1.3.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://blog.jquery.com/2009/02/20/jquery-132-released/">February 20, 2009</a></td>
<td>1.3.2</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://blog.jquery.com/2010/01/14/jquery-14-released/">January 14, 2010</a></td>
<td>1.4</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://jquery14.com/day-12/jquery-141-released">January 25, 2010</a></td>
<td>1.4.1</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://blog.jquery.com/2010/02/19/jquery-142-released/">February 19, 2010</a></td>
<td>1.4.2</td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://witslog.com/wiki/technical/jquery/jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

