<?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>SnipL0g &#187; jquery</title>
	<atom:link href="http://snippet.c0de.me/category/javascript/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://snippet.c0de.me</link>
	<description>code snippet web log</description>
	<lastBuildDate>Tue, 29 Jun 2010 00:09:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Javascript &#8211; jQuery &#8211; Timer</title>
		<link>http://snippet.c0de.me/2010/04/30/javascript-jquery-timer/</link>
		<comments>http://snippet.c0de.me/2010/04/30/javascript-jquery-timer/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 16:08:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[javacript]]></category>
		<category><![CDATA[minutes]]></category>
		<category><![CDATA[seconds]]></category>
		<category><![CDATA[setTimeout]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[timeout]]></category>
		<category><![CDATA[timer]]></category>

		<guid isPermaLink="false">http://snippet.c0de.me/?p=295</guid>
		<description><![CDATA[Author: slac3dork Site: http://snippet.c0de.me Summary: Click counter with jQuery framework. &#60;html&#62; &#60;head&#62; &#60;title&#62;Twitter like text area&#60;/title&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(function(){ setTimeout(run_timer, 0); var minutes = 0; var seconds = 0; function run_timer() { setTimeout(run_timer, 1000); if(minutes > 0) { time = minutes + " minutes " + seconds + " seconds"; } else [...]]]></description>
		<wfw:commentRss>http://snippet.c0de.me/2010/04/30/javascript-jquery-timer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; jQuery &#8211; Click Counter</title>
		<link>http://snippet.c0de.me/2010/02/24/javascript-jquery-click-counter/</link>
		<comments>http://snippet.c0de.me/2010/02/24/javascript-jquery-click-counter/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 23:57:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[click event]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://snippet.c0de.me/?p=288</guid>
		<description><![CDATA[Author: slac3dork Site: http://snippet.c0de.me Summary: Click counter with jQuery framework. &#60;html&#62; &#60;head&#62; &#60;title&#62;Twitter like text area&#60;/title&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(function(){ var total_click = 0; $("#clickMe").click(function(){ total_click = total_click + 1; $("#counter").text("Total Click: " + total_click); return false; }); }); &#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;form&#62; &#60;div id="counter"&#62;Total Click: 0&#60;/div&#62;&#60;br /&#62; &#60;a id="clickMe" href="#"&#62;click me!&#60;/a&#62; &#60;/form&#62; [...]]]></description>
		<wfw:commentRss>http://snippet.c0de.me/2010/02/24/javascript-jquery-click-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; jQuery &#8211; Disable Button Based on Character Length</title>
		<link>http://snippet.c0de.me/2010/01/16/javascript-jquery-disable-button-based-on-characters-lengt/</link>
		<comments>http://snippet.c0de.me/2010/01/16/javascript-jquery-disable-button-based-on-characters-lengt/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 18:21:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[disable button]]></category>
		<category><![CDATA[javscript]]></category>
		<category><![CDATA[keyup]]></category>
		<category><![CDATA[max characters]]></category>

		<guid isPermaLink="false">http://snippet.c0de.me/?p=265</guid>
		<description><![CDATA[Author: slac3dork Site: http://snippet.c0de.me Summary: This script will disable &#8220;Go!&#8221; button if total characters more than 140 or have no character using jQuery framework. &#60;html&#62; &#60;head&#62; &#60;title&#62;Twitter like text area&#60;/title&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(function(){ $(&#34;#my-submit-id&#34;).attr(&#34;disabled&#34;, &#34;disabled&#34;); var chars = 0; $(&#34;#my-text-id&#34;).keyup(function(){ chars = $(this).val().length; if ((chars &#60; 1) &#124;&#124; (chars &#62; 140)){ $(&#34;#my-submit-id&#34;).attr(&#34;disabled&#34;, [...]]]></description>
		<wfw:commentRss>http://snippet.c0de.me/2010/01/16/javascript-jquery-disable-button-based-on-characters-lengt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
