<?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>Joe Stevens&#039; Blog &#187; jQuery</title>
	<atom:link href="http://www.joe-stevens.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joe-stevens.com</link>
	<description>Everything .NET and C#</description>
	<lastBuildDate>Sat, 24 Jul 2010 00:23:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to select checkboxes in an ASP.NET CheckBoxList using jQuery</title>
		<link>http://www.joe-stevens.com/2010/03/18/how-to-select-checkboxes-in-an-asp-net-checkboxlist-using-jquery/</link>
		<comments>http://www.joe-stevens.com/2010/03/18/how-to-select-checkboxes-in-an-asp-net-checkboxlist-using-jquery/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 04:37:28 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=467</guid>
		<description><![CDATA[I came across a situation where I needed to make sure at least one checkbox in an ASP.NET CheckBoxList is checked before submitting the page.  Looking at the source each checkbox element created shares the same client ID with a different number at the end, so I needed a way to select all checkboxes where [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/03/18/how-to-select-checkboxes-in-an-asp-net-checkboxlist-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Populate a select dropdown list using jQuery and Ajax</title>
		<link>http://www.joe-stevens.com/2010/02/23/populate-a-select-dropdown-list-using-jquery-and-ajax/</link>
		<comments>http://www.joe-stevens.com/2010/02/23/populate-a-select-dropdown-list-using-jquery-and-ajax/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 02:49:36 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=459</guid>
		<description><![CDATA[In this post I&#8217;ll explain how to populate a select dropdownlist using jQuery and Ajax.  I am using an ASP.NET web application and page methods to perform the Ajax calls.  Using page methods means that you do not need a seperate web service, which is good if the functionality is specifically for the page.  The [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/02/23/populate-a-select-dropdown-list-using-jquery-and-ajax/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Convert all static text email addresses to mailto links using jQuery</title>
		<link>http://www.joe-stevens.com/2010/02/18/convert-all-static-text-email-addresses-to-mailto-links-using-jquery/</link>
		<comments>http://www.joe-stevens.com/2010/02/18/convert-all-static-text-email-addresses-to-mailto-links-using-jquery/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 03:02:53 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Regular Expression]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=452</guid>
		<description><![CDATA[In this post I&#8217;ll show how to use  jQuery to automatically convert all email addesses from static text into a mailto link.

Consider the following table which contains a person&#8217;s details including their email address.

Using jQuery I can easily find table cells that contain an email address by using a regular expression and then convert the address [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/02/18/convert-all-static-text-email-addresses-to-mailto-links-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Delete link with MVC using POST to avoid security issues</title>
		<link>http://www.joe-stevens.com/2010/02/16/creating-a-delete-link-with-mvc-using-post-to-avoid-security-issues/</link>
		<comments>http://www.joe-stevens.com/2010/02/16/creating-a-delete-link-with-mvc-using-post-to-avoid-security-issues/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 03:43:39 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=438</guid>
		<description><![CDATA[It is fairly common to have a list of records with a hyperlink to delete a record.  The problem here is that with MVC the hyperlink will use a GET request to delete a record.  This is a fairly big security issue as anybody can browse to the URL and delete a record from your system.  [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/02/16/creating-a-delete-link-with-mvc-using-post-to-avoid-security-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force client-side JavaScript event to fire programatically using jQuery</title>
		<link>http://www.joe-stevens.com/2010/01/15/force-client-side-javascript-event-to-fire-programatically-using-jquery/</link>
		<comments>http://www.joe-stevens.com/2010/01/15/force-client-side-javascript-event-to-fire-programatically-using-jquery/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 05:57:33 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=396</guid>
		<description><![CDATA[Earlier today I needed to force a clide side event to fire programatically using jQuery.
I found you can do this easily with the jQuery trigger method:

$(&#34;#myControl&#34;).trigger(&#34;change&#34;);

The above will trigger the change event of the control with ID &#8216;myControl&#8217;
    ]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/15/force-client-side-javascript-event-to-fire-programatically-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edit in place / inline editing with jQuery, jTemplates and ASP.NET</title>
		<link>http://www.joe-stevens.com/2010/01/12/edit-in-place-inline-editing-with-jquery-jtemplates-and-asp-net/</link>
		<comments>http://www.joe-stevens.com/2010/01/12/edit-in-place-inline-editing-with-jquery-jtemplates-and-asp-net/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 02:19:05 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=386</guid>
		<description><![CDATA[Download source
In this post I talked about how to use the jTemplates plugin for jQuery. Using my final example in the post I thought it would be cool to try and add some &#8216;edit in place&#8217; functionality to the table.
For this to work I&#8217;ve created a Data Access Layer using Linq to XML. My web [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/12/edit-in-place-inline-editing-with-jquery-jtemplates-and-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the jTemplate jquery plugin with ajax and ASP.NET</title>
		<link>http://www.joe-stevens.com/2010/01/05/using-the-jtemplate-jquery-plugin-with-ajax-and-asp-net/</link>
		<comments>http://www.joe-stevens.com/2010/01/05/using-the-jtemplate-jquery-plugin-with-ajax-and-asp-net/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 04:32:03 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[jtemplates]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=367</guid>
		<description><![CDATA[Download source
A guy in work introduced me to jTemplates, a template engine plugin for jQuery. It allows you to easily bind JavaScript objects to a defined template and also has some other nifty features.
I&#8217;ve found jTemplates to be particularly good when using ajax to display any information quickly and easily.
First I&#8217;ll explain how to create [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/05/using-the-jtemplate-jquery-plugin-with-ajax-and-asp-net/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Using jQuery to make ajax calls to an ASMX web service using ASP.NET</title>
		<link>http://www.joe-stevens.com/2010/01/04/using-jquery-to-make-ajax-calls-to-an-asmx-web-service-using-asp-net/</link>
		<comments>http://www.joe-stevens.com/2010/01/04/using-jquery-to-make-ajax-calls-to-an-asmx-web-service-using-asp-net/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 06:02:45 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=351</guid>
		<description><![CDATA[Download source
Making ajax calls to an ASP.NET web service using jQuery is too easy.  In this post I&#8217;ll explain how to do it!

Start by creating a new web project and adding a new ASMX web service:

Open the new web service and uncomment the following line to allow the web service to be called from script.

[System.Web.Script.Services.ScriptService]

The web [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/04/using-jquery-to-make-ajax-calls-to-an-asmx-web-service-using-asp-net/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using jQuery&#8217;s Each method to iterate through a JavaScript array</title>
		<link>http://www.joe-stevens.com/2009/12/30/using-jquerys-each-method-to-iterate-through-a-javascript-array/</link>
		<comments>http://www.joe-stevens.com/2009/12/30/using-jquerys-each-method-to-iterate-through-a-javascript-array/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 02:26:45 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[Each]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=345</guid>
		<description><![CDATA[The Each method in jQuery is pretty useful and can be used to iterate through the elements within a jQuery object.
I&#8217;ve been using it recently to iterate through JavaScript arrays.  It saves having to use a for loop and the code looks nicer.

Say I have the following code that creates an array and outputs the values [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2009/12/30/using-jquerys-each-method-to-iterate-through-a-javascript-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
