<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using JQuery &#8216;data&#8217; feature to detect form changes</title>
	<atom:link href="http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/</link>
	<description>perspectives from a hands on technology executive</description>
	<lastBuildDate>Wed, 14 Jul 2010 10:00:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Dan Hayes</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-82</link>
		<dc:creator>Dan Hayes</dc:creator>
		<pubDate>Wed, 14 Jul 2010 10:00:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-82</guid>
		<description>Not sure exactly what you mean.  However, if you are programmatically updating values in text input control then you should be able to call handleFormChanged() directly from the javascript.</description>
		<content:encoded><![CDATA[<p>Not sure exactly what you mean.  However, if you are programmatically updating values in text input control then you should be able to call handleFormChanged() directly from the javascript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hlaingtun</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-81</link>
		<dc:creator>hlaingtun</dc:creator>
		<pubDate>Wed, 14 Jul 2010 04:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-81</guid>
		<description>How to detect changes that programatically through value to input textbox ,?</description>
		<content:encoded><![CDATA[<p>How to detect changes that programatically through value to input textbox ,?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Hayes</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-80</link>
		<dc:creator>Dan Hayes</dc:creator>
		<pubDate>Fri, 09 Jul 2010 18:39:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-80</guid>
		<description>The paste event is important if you copy something to the clipboard and CTL-V to paste (or right click paste) to a textarea or text box.  Otherwise, you run the risk of a change to the form not being processed by the handleFormChanged() function.</description>
		<content:encoded><![CDATA[<p>The paste event is important if you copy something to the clipboard and CTL-V to paste (or right click paste) to a textarea or text box.  Otherwise, you run the risk of a change to the form not being processed by the handleFormChanged() function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JGarrido</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-79</link>
		<dc:creator>JGarrido</dc:creator>
		<pubDate>Wed, 30 Jun 2010 17:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-79</guid>
		<description>The code looks pretty decent, but what good is the bind to the &#039;paste&#039; event if there is no way to effectively trigger it appropriately?</description>
		<content:encoded><![CDATA[<p>The code looks pretty decent, but what good is the bind to the &#8216;paste&#8217; event if there is no way to effectively trigger it appropriately?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Priya</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-78</link>
		<dc:creator>Priya</dc:creator>
		<pubDate>Thu, 15 Apr 2010 22:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-78</guid>
		<description>Very nice article. Pretty useful. Everything works! Thanks</description>
		<content:encoded><![CDATA[<p>Very nice article. Pretty useful. Everything works! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Hayes</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-77</link>
		<dc:creator>Dan Hayes</dc:creator>
		<pubDate>Tue, 13 Apr 2010 13:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-77</guid>
		<description>Select list should work fine.  Events are captured using change event:

$(&#039;#my_form .editable&#039;).bind(&#039;change paste&#039;, function() {
          handleFormChanged();
     });

Double check your form select element to be sure you have assigned the &quot;editable&quot; class attribute.</description>
		<content:encoded><![CDATA[<p>Select list should work fine.  Events are captured using change event:</p>
<p>$(&#8216;#my_form .editable&#8217;).bind(&#8216;change paste&#8217;, function() {<br />
          handleFormChanged();<br />
     });</p>
<p>Double check your form select element to be sure you have assigned the &#8220;editable&#8221; class attribute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kiran</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-76</link>
		<dc:creator>kiran</dc:creator>
		<pubDate>Mon, 12 Apr 2010 04:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-76</guid>
		<description>Hi,

Its a greate help. It sloved my problem but for select list it is not working. 

how to do it for slect list.

Thanks
C.Kiran Kumar</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Its a greate help. It sloved my problem but for select list it is not working. </p>
<p>how to do it for slect list.</p>
<p>Thanks<br />
C.Kiran Kumar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Hayes</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-16</link>
		<dc:creator>Dan Hayes</dc:creator>
		<pubDate>Tue, 01 Dec 2009 21:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-16</guid>
		<description>I assume you mean changes to [hidden] field values made via javascript.  Otherwise, how would a user directly change a hidden field?  It is my understanding that modifications to the DOM element made in javascript do NOT trigger events bound via jQuery.  I just tested this myself.

Perhaps I am not understanding your question.</description>
		<content:encoded><![CDATA[<p>I assume you mean changes to [hidden] field values made via javascript.  Otherwise, how would a user directly change a hidden field?  It is my understanding that modifications to the DOM element made in javascript do NOT trigger events bound via jQuery.  I just tested this myself.</p>
<p>Perhaps I am not understanding your question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-15</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 01 Dec 2009 15:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-15</guid>
		<description>I only want to detect changes in fields that are not hidden - how would I do that?</description>
		<content:encoded><![CDATA[<p>I only want to detect changes in fields that are not hidden &#8211; how would I do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nora Brown</title>
		<link>http://www.mydogboris.com/2009/10/using-jquery-data-feature-to-detect-form-changes/comment-page-1/#comment-11</link>
		<dc:creator>Nora Brown</dc:creator>
		<pubDate>Sun, 22 Nov 2009 16:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydogboris.com/?p=60#comment-11</guid>
		<description>Thanks for this, it&#039;s exactly what I was looking for, to use in a theme for the CMS Textpattern, to show whether changes to an article have been saved or not. Isn&#039;t JQuery the bomb?</description>
		<content:encoded><![CDATA[<p>Thanks for this, it&#8217;s exactly what I was looking for, to use in a theme for the CMS Textpattern, to show whether changes to an article have been saved or not. Isn&#8217;t JQuery the bomb?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
