<?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>Schogini &#187; jQuery</title>
	<atom:link href="http://sree.cc/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://sree.cc</link>
	<description>Over The Top Professionals</description>
	<lastBuildDate>Mon, 21 May 2012 12:08:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Handling browser events in jQuery</title>
		<link>http://sree.cc/jquery/handling-browser-events-in-jquery</link>
		<comments>http://sree.cc/jquery/handling-browser-events-in-jquery#comments</comments>
		<pubDate>Tue, 05 Apr 2011 03:25:40 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Browser Usage]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Window Resize]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=6799</guid>
		<description><![CDATA[jQuery has it&#8217;s own functions to handle browser events. The resize() function will call when the browser resized. The usage is given below: jQuery(window).resize(function() { jQuery('#para1').append('&#60;div&#62;Window Resized.&#60;/div&#62;'); }); Scroll() handles the scroll event. Usage given below: $('#para1').scroll(function() { $('#result').append('&#60;div&#62;Scroll event called.&#60;/div&#62;'); });]]></description>
		<wfw:commentRss>http://sree.cc/jquery/handling-browser-events-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery inArray() usage</title>
		<link>http://sree.cc/jquery/jquery-inarray-usage</link>
		<comments>http://sree.cc/jquery/jquery-inarray-usage#comments</comments>
		<pubDate>Fri, 25 Mar 2011 09:11:27 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Array Example]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Nbsp]]></category>
		<category><![CDATA[Script Src]]></category>
		<category><![CDATA[Script Type]]></category>
		<category><![CDATA[Text Javascript]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=6565</guid>
		<description><![CDATA[jQuery.inArray( value, array ) The jQuery inArray() function searches the given value is there in the array. Example]]></description>
		<wfw:commentRss>http://sree.cc/jquery/jquery-inarray-usage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.eq() in jQuery</title>
		<link>http://sree.cc/jquery/eq-in-jquery</link>
		<comments>http://sree.cc/jquery/eq-in-jquery#comments</comments>
		<pubDate>Mon, 31 Jan 2011 04:24:44 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[eq]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=4883</guid>
		<description><![CDATA[Reduce the set of matched elements to the one at the specified index. Example: With this HTML: Steve James Tommy Stella And this JavaScript: alert($("ul li").eq(0).text()); // Steve alert($("ul li").eq(1).text()); // James alert($("ul li").eq(2).text()); // Tommy alert($("ul li").eq(3).text()); // Stella]]></description>
		<wfw:commentRss>http://sree.cc/jquery/eq-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Application using Ajax and PHP</title>
		<link>http://sree.cc/jquery/simple-application-using-ajax-and-php</link>
		<comments>http://sree.cc/jquery/simple-application-using-ajax-and-php#comments</comments>
		<pubDate>Thu, 18 Feb 2010 06:46:39 +0000</pubDate>
		<dc:creator>abhijithvg</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wamp Server]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=544</guid>
		<description><![CDATA[This is a simple application to convert all the First Letter of a string to Upper case using AJAX. Here you have two files: an HTML file and a PHP file. The HTML file contains the HTML code as well as Ajax code. The PHP file is meant for modifiying the string. In this example [...]]]></description>
		<wfw:commentRss>http://sree.cc/jquery/simple-application-using-ajax-and-php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jquery for Beginners</title>
		<link>http://sree.cc/jquery/jquery-for-beginners</link>
		<comments>http://sree.cc/jquery/jquery-for-beginners#comments</comments>
		<pubDate>Fri, 12 Feb 2010 12:49:20 +0000</pubDate>
		<dc:creator>nivedita</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[w3schools]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=522</guid>
		<description><![CDATA[Besides W3Schools one site with a really helpful tutorial for jQuery that any beginner can browse through easily is the Web Designer Wall. http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/ This tutorial is not just clear and to-the-point, it is also very bright and bold in presentation. It has 10 really helpful visual tutorials on jQuery in an easy to understand, [...]]]></description>
		<wfw:commentRss>http://sree.cc/jquery/jquery-for-beginners/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sree.cc @ 2012-05-22 08:53:26 -->
