<?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: Prevent double submit with jQuery</title> <atom:link href="http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/feed/" rel="self" type="application/rss+xml" /><link>http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/</link> <description>Self-proclaimed greatness is a hard thing to prove.</description> <lastBuildDate>Tue, 26 Mar 2013 13:06:25 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5.1</generator> <item><title>By: nikolay</title><link>http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/#comment-2056</link> <dc:creator>nikolay</dc:creator> <pubDate>Tue, 19 Feb 2013 14:36:49 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=70#comment-2056</guid> <description><![CDATA[Thanks! Very helpful.]]></description> <content:encoded><![CDATA[<p>Thanks! Very helpful.</p> ]]></content:encoded> </item> <item><title>By: Jaizon Lubaton</title><link>http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/#comment-1986</link> <dc:creator>Jaizon Lubaton</dc:creator> <pubDate>Thu, 10 Jan 2013 09:22:19 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=70#comment-1986</guid> <description><![CDATA[This is a silver bullet solution yet very simple! Thanks Alot!]]></description> <content:encoded><![CDATA[<p>This is a silver bullet solution yet very simple! Thanks Alot!</p> ]]></content:encoded> </item> <item><title>By: Jeaykumar</title><link>http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/#comment-1868</link> <dc:creator>Jeaykumar</dc:creator> <pubDate>Mon, 23 Jul 2012 06:56:52 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=70#comment-1868</guid> <description><![CDATA[it&#039;s nice and simple solution]]></description> <content:encoded><![CDATA[<p>it&#8217;s nice and simple solution</p> ]]></content:encoded> </item> <item><title>By: mikhail</title><link>http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/#comment-1849</link> <dc:creator>mikhail</dc:creator> <pubDate>Sun, 27 May 2012 16:32:24 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=70#comment-1849</guid> <description><![CDATA[cool!!!]]></description> <content:encoded><![CDATA[<p>cool!!!</p> ]]></content:encoded> </item> <item><title>By: brian</title><link>http://greatwebguy.com/programming/dom/prevent-double-submit-with-jquery/#comment-1848</link> <dc:creator>brian</dc:creator> <pubDate>Fri, 25 May 2012 01:18:59 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=70#comment-1848</guid> <description><![CDATA[I was using a junction like this....
$(&quot;form&quot;).submit( function () {
$(this).unbind();
$(this).click(function () {
return false;
});
});
And that does no work in ie9 so i changed it to this and now it works in ie9, it seems that the form would not submit unless I submit it with jquery in the submit call back, also works in chrome.
$(&quot;form&quot;).submit( function () {
$(this).unbind();
$(this).submit();
$(this).click(function () {
return false;
});
});]]></description> <content:encoded><![CDATA[<p>I was using a junction like this&#8230;.</p><p> $(&#8220;form&#8221;).submit( function () {<br
/> $(this).unbind();<br
/> $(this).click(function () {<br
/> return false;<br
/> });<br
/> });</p><p>And that does no work in ie9 so i changed it to this and now it works in ie9, it seems that the form would not submit unless I submit it with jquery in the submit call back, also works in chrome.</p><p> $(&#8220;form&#8221;).submit( function () {<br
/> $(this).unbind();<br
/> $(this).submit();<br
/> $(this).click(function () {<br
/> return false;<br
/> });<br
/> });</p> ]]></content:encoded> </item> </channel> </rss>