<?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>Random Thoughts &#187; JQuery</title>
	<atom:link href="http://blog.inflinx.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.inflinx.com</link>
	<description>All About Software Development</description>
	<lastBuildDate>Mon, 22 Aug 2011 23:31:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Adding JQuery Slider Part II</title>
		<link>http://blog.inflinx.com/2009/10/09/adding-jquery-slider-part-ii/</link>
		<comments>http://blog.inflinx.com/2009/10/09/adding-jquery-slider-part-ii/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 21:15:28 +0000</pubDate>
		<dc:creator>Balaji</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Solutions Log]]></category>

		<guid isPermaLink="false">http://blog.inflinx.com/?p=299</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
var dzone_url = 'http://blog.inflinx.com/2009/10/09/adding-jquery-slider-part-ii/';
var dzone_title = 'Adding JQuery Slider Part II';
var dzone_blurb = '';
var dzone_style = '1';
//-->
</script>
<script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script> 
</div>
In my last post I showed how to easily add slider functionality using JQuery. In this post I will showcase some of the options that slider provides with a Temperature Converter. This is how it will work: the slider represents temperature measured in Celsius units and ranges between 0 and 100. As the user drags [...]]]></description>
		<wfw:commentRss>http://blog.inflinx.com/2009/10/09/adding-jquery-slider-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding JQuery UI Slider</title>
		<link>http://blog.inflinx.com/2009/10/01/adding-jquery-ui-slider/</link>
		<comments>http://blog.inflinx.com/2009/10/01/adding-jquery-ui-slider/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 03:46:29 +0000</pubDate>
		<dc:creator>Balaji</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Solutions Log]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blog.inflinx.com/?p=260</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
var dzone_url = 'http://blog.inflinx.com/2009/10/01/adding-jquery-ui-slider/';
var dzone_title = 'Adding JQuery UI Slider';
var dzone_blurb = '';
var dzone_style = '1';
//-->
</script>
<script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script> 
</div>
Here are five easy steps to add slider functionality to your web applications: Step 1: Go to JQuery UI site and create a custom download. To keep things simple, select &#8220;No Theme&#8221;.under theme section and deselect all but UI Core and Slider checkboxes. Hit Download and unzip the downloaded file. Step 2: Copy the jquery-1.3.2.min.js [...]]]></description>
		<wfw:commentRss>http://blog.inflinx.com/2009/10/01/adding-jquery-ui-slider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic JQuery Tips</title>
		<link>http://blog.inflinx.com/2009/09/22/basic-jquery-tips/</link>
		<comments>http://blog.inflinx.com/2009/09/22/basic-jquery-tips/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:18:30 +0000</pubDate>
		<dc:creator>Balaji</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.inflinx.com/?p=251</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
var dzone_url = 'http://blog.inflinx.com/2009/09/22/basic-jquery-tips/';
var dzone_title = 'Basic JQuery Tips';
var dzone_blurb = '';
var dzone_style = '1';
//-->
</script>
<script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script> 
</div>
This is more for my reference and hopefully helps others working with JQuery. Getting and Setting the innerHTML of an element var content = $("#id").html(); $("#id").html("Some HTML"); Getting and Setting the text (with out any HTML) of an element var txt = $("#id").text(); $("#id").text("Some Text"); Removing content from an element $("#id").empty(); Getting and Setting style [...]]]></description>
		<wfw:commentRss>http://blog.inflinx.com/2009/09/22/basic-jquery-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unobtrusive JavaScript using JQuery</title>
		<link>http://blog.inflinx.com/2009/03/07/unobtrusive-javascript-using-jquery/</link>
		<comments>http://blog.inflinx.com/2009/03/07/unobtrusive-javascript-using-jquery/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 08:10:47 +0000</pubDate>
		<dc:creator>Balaji</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.inflinx.com/?p=148</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
var dzone_url = 'http://blog.inflinx.com/2009/03/07/unobtrusive-javascript-using-jquery/';
var dzone_title = 'Unobtrusive JavaScript using JQuery';
var dzone_blurb = '';
var dzone_style = '1';
//-->
</script>
<script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script> 
</div>
I feel that an important advantage of using JQuery is its ability to separate behavior from structure. Consider the case where you want to trigger a JavaScript method when a link is clicked. A common implementation would be: function show() { // Code } Click Me Even though this mixing of behavior (JavaScript) and structure [...]]]></description>
		<wfw:commentRss>http://blog.inflinx.com/2009/03/07/unobtrusive-javascript-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery &#8211; Five useful tips</title>
		<link>http://blog.inflinx.com/2009/03/07/jquery-five-useful-tips/</link>
		<comments>http://blog.inflinx.com/2009/03/07/jquery-five-useful-tips/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 07:22:58 +0000</pubDate>
		<dc:creator>Balaji</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.inflinx.com/?p=139</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
var dzone_url = 'http://blog.inflinx.com/2009/03/07/jquery-five-useful-tips/';
var dzone_title = 'JQuery &#8211; Five useful tips';
var dzone_blurb = '';
var dzone_style = '1';
//-->
</script>
<script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script> 
</div>
Selectors Before an element can be manipulated using JQuery, it needs to be identified. JQuery provides a powerful syntax for selecting a one or more elements. Here are some simple selectors (notice similarity to CSS element selection): Selecting by id: $(&#8216;#yourelementid&#8217;) Selecting by class name: $(&#8216;.yourclassname&#8217;) Selecting by tag name: $(&#8216;p&#8217;) selects all the elements [...]]]></description>
		<wfw:commentRss>http://blog.inflinx.com/2009/03/07/jquery-five-useful-tips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

