<?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/category/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://sree.cc</link>
	<description>Over The Top Professionals</description>
	<lastBuildDate>Fri, 18 May 2012 07:43:28 +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>List View using jQuerymobile</title>
		<link>http://sree.cc/javascript/list-view-using-jquerymobile</link>
		<comments>http://sree.cc/javascript/list-view-using-jquerymobile#comments</comments>
		<pubDate>Tue, 31 Jan 2012 06:02:15 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10870</guid>
		<description><![CDATA[1 2 3 4 5]]></description>
		<wfw:commentRss>http://sree.cc/javascript/list-view-using-jquerymobile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding header Part in jquerymobile</title>
		<link>http://sree.cc/jquery/adding-header-part-in-jquerymobile</link>
		<comments>http://sree.cc/jquery/adding-header-part-in-jquerymobile#comments</comments>
		<pubDate>Tue, 31 Jan 2012 05:39:28 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10838</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://sree.cc/jquery/adding-header-part-in-jquerymobile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Parent element in jquery</title>
		<link>http://sree.cc/jquery/getting-parent-element-in-jquery</link>
		<comments>http://sree.cc/jquery/getting-parent-element-in-jquery#comments</comments>
		<pubDate>Fri, 30 Dec 2011 04:31:04 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10501</guid>
		<description><![CDATA[This is Child element 1 This is Child element 2 css .parent_class { color:blue; } jquery $('#child2').parent().removeClass('parent_class');]]></description>
		<wfw:commentRss>http://sree.cc/jquery/getting-parent-element-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Relative mouse position using jQuery</title>
		<link>http://sree.cc/jquery/get-relative-mouse-position-using-jquery</link>
		<comments>http://sree.cc/jquery/get-relative-mouse-position-using-jquery#comments</comments>
		<pubDate>Tue, 29 Nov 2011 11:58:25 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sree.cc/uncategorized/get-relative-mouse-position-using-jquery</guid>
		<description><![CDATA[This function is very handy in returning the relative mouse function. This function will return the mouse position (x and y) according to its parent element. function returnMousePosition(elementID, mouseX, mouseY) { var offset = $('#'+elementID).offset(); var x = mouseX - offset.left; var y = mouseY - offset.top; return {'x': x, 'y': y};}]]></description>
		<wfw:commentRss>http://sree.cc/jquery/get-relative-mouse-position-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Child selector example in jQuery</title>
		<link>http://sree.cc/javascript/child-selector-example-in-jquery</link>
		<comments>http://sree.cc/javascript/child-selector-example-in-jquery#comments</comments>
		<pubDate>Mon, 01 Aug 2011 03:09:13 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Css Border]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Script Src]]></category>
		<category><![CDATA[Ul Class]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=8560</guid>
		<description><![CDATA[The following script will illustrate the use of child selector using jQuery:  &#60;html&#62; &#60;head&#62;   &#60;script src="http://code.jquery.com/jquery-latest.js"&#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;ul class="main"&#62;     &#60;li&#62;Product1&#60;/li&#62;     &#60;li&#62;Product2         &#60;ul&#62; &#60;li&#62;Sub Product 1&#60;/li&#62; &#60;li&#62;Sub Product 2&#60;/li&#62; &#60;li&#62;Sub Product 3&#60;/li&#62; &#60;/ul&#62;     &#60;/li&#62;     &#60;li&#62;Product 3&#60;/li&#62; &#60;/ul&#62; &#60;script&#62; jQuery("ul.main &#62; li").css("border", "1px [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/child-selector-example-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically set range of date into jQuery datepicker</title>
		<link>http://sree.cc/jquery/dynamically-set-range-of-date-into-jquery-datepicker</link>
		<comments>http://sree.cc/jquery/dynamically-set-range-of-date-into-jquery-datepicker#comments</comments>
		<pubDate>Fri, 29 Jul 2011 09:28:42 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=8543</guid>
		<description><![CDATA[$( "#datepicker" ).datepicker("option", "minDate", YourMinDate); $( "#datepicker" ).datepicker("option", "maxDate", YourMaxDate);]]></description>
		<wfw:commentRss>http://sree.cc/jquery/dynamically-set-range-of-date-into-jquery-datepicker/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery makeArray function usage</title>
		<link>http://sree.cc/jquery/jquery-makearray-function-usage</link>
		<comments>http://sree.cc/jquery/jquery-makearray-function-usage#comments</comments>
		<pubDate>Thu, 21 Apr 2011 04:29:19 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[Div]]></category>
		<category><![CDATA[Document Body]]></category>
		<category><![CDATA[England]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Gt Japan]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Script Src]]></category>
		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=7052</guid>
		<description><![CDATA[The following example shows you how to use makeArray function: &#60;html&#62; &#60;head&#62; &#60;script src="http://code.jquery.com/jquery-1.5.js"&#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;div&#62;United States&#60;/div&#62; &#60;div&#62;Japan&#60;/div&#62; &#60;div&#62;Germany&#60;/div&#62; &#60;div&#62;England&#60;/div&#62; &#60;div&#62;France&#60;/div&#62; &#60;script&#62; // Collects contents from div var elems = document.getElementsByTagName("div"); //Creates myarray var myarray = jQuery.makeArray(elems); //reversing array myarray.reverse(); // Appending the array  to the existing content $(myarray).appendTo(document.body); &#60;/script&#62; &#60;/body&#62; &#60;/html&#62;]]></description>
		<wfw:commentRss>http://sree.cc/jquery/jquery-makearray-function-usage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Simple image slide down effect using jQuery</title>
		<link>http://sree.cc/jquery/simple-image-slide-down-effect-using-jquery</link>
		<comments>http://sree.cc/jquery/simple-image-slide-down-effect-using-jquery#comments</comments>
		<pubDate>Mon, 28 Mar 2011 03:08:50 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Document Body]]></category>
		<category><![CDATA[Image Slide]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Script Src]]></category>
		<category><![CDATA[Slide Down]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=6569</guid>
		<description><![CDATA[jQuery&#8217;s slideDown() function is used to create slide down effect in the following example: &#60;html&#62; &#60;head&#62; &#60;style&#62; div { background:#ee0000; margin:3px; width:100px; height:50px; display:none; float:left; } &#60;/style&#62; &#60;script src=&#8221;http://code.jquery.com/jquery-1.5.js&#8221;&#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; Click here to silde down &#60;div&#62;&#60;/div&#62; &#60;div&#62;&#60;/div&#62; &#60;div&#62;&#60;/div&#62; &#60;script&#62; $(document.body).click(function () { if ($(&#8220;div:first&#8221;).is(&#8220;:hidden&#8221;)) { $(&#8220;div&#8221;).slideDown(&#8220;slow&#8221;); } else { $(&#8220;div&#8221;).hide(); } }); &#60;/script&#62; &#60;/body&#62; [...]]]></description>
		<wfw:commentRss>http://sree.cc/jquery/simple-image-slide-down-effect-using-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>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sree.cc @ 2012-05-19 10:34:13 -->
