<?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: Debouncing Javascript Methods</title>
	<atom:link href="http://unscriptable.com/2009/03/20/debouncing-javascript-methods/feed/" rel="self" type="application/rss+xml" />
	<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 17 Apr 2012 18:01:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: limit.js &#8211; The number of events is too damn high! &#124; GotSomething?</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-179</link>
		<dc:creator>limit.js &#8211; The number of events is too damn high! &#124; GotSomething?</dc:creator>
		<pubDate>Tue, 17 Apr 2012 18:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-179</guid>
		<description>[...] for years but never new the right name for it. After starting this project I came across http://unscriptable.com/2009/03/20/debouncing-javascript-methods/ and learned the term &#8217;debounce&#8217; . I also noticed his implementation was better than [...]</description>
		<content:encoded><![CDATA[<p>[...] for years but never new the right name for it. After starting this project I came across http://unscriptable.com/2009/03/20/debouncing-javascript-methods/ and learned the term &#8217;debounce&#8217; . I also noticed his implementation was better than [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Select the first field from jQuery autocomplete function automatically - Programmers Goodies</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-37</link>
		<dc:creator>Select the first field from jQuery autocomplete function automatically - Programmers Goodies</dc:creator>
		<pubDate>Sun, 21 Aug 2011 16:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-37</guid>
		<description>[...] That requires a jQuery plugin of course, so if you&#8217;d rather have a minimal-footprint version, use John Hann&#8216;s pure-Javascript version: [...] </description>
		<content:encoded><![CDATA[<p>[...] That requires a jQuery plugin of course, so if you&#8217;d rather have a minimal-footprint version, use John Hann&#8216;s pure-Javascript version: [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Handling a series of DOMNodeInserted events as a single event in JavaScript - Programmers Goodies</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-36</link>
		<dc:creator>Handling a series of DOMNodeInserted events as a single event in JavaScript - Programmers Goodies</dc:creator>
		<pubDate>Wed, 27 Jul 2011 11:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-36</guid>
		<description>[...] the method that you suggested (using .one() and reattaching after a timeout), but it sounds like debounce (waiting until a burst of function calls ends before calling the handler, or calling the handler [...] </description>
		<content:encoded><![CDATA[<p>[...] the method that you suggested (using .one() and reattaching after a timeout), but it sounds like debounce (waiting until a burst of function calls ends before calling the handler, or calling the handler [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery Roundup: FitText, gmap3, Awesomemarkup</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-35</link>
		<dc:creator>jQuery Roundup: FitText, gmap3, Awesomemarkup</dc:creator>
		<pubDate>Wed, 29 Jun 2011 18:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-35</guid>
		<description>[...] a fork of FitText using a debounced resize method.The original post about debouncing is here: Debouncing Javascript Methods.gmap3gmap3 (GitHub: jbdemonte / gmap3) by Jean-Baptiste Demonte makes working with Google Maps a [...] </description>
		<content:encoded><![CDATA[<p>[...] a fork of FitText using a debounced resize method.The original post about debouncing is here: Debouncing Javascript Methods.gmap3gmap3 (GitHub: jbdemonte / gmap3) by Jean-Baptiste Demonte makes working with Google Maps a [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rolfen</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-34</link>
		<dc:creator>rolfen</dc:creator>
		<pubDate>Tue, 20 Apr 2010 23:34:09 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-34</guid>
		<description>&lt;a href=&quot;#comment-448&quot; rel=&quot;nofollow&quot;&gt;@h3&lt;/a&gt; 
That&#039;s not really bounce, but more like threshold. I you press a key less then 15ms and it doesnt register the keypress then it&#039;s a threshold problem, or whatever they call it. Bounce refers to multiple contiguous events reduced to a same event. Your problem is one (or more) event(s) reduced to zero events :)
IMHO!</description>
		<content:encoded><![CDATA[<p><a href="#comment-448" rel="nofollow">@h3</a><br />
That&#8217;s not really bounce, but more like threshold. I you press a key less then 15ms and it doesnt register the keypress then it&#8217;s a threshold problem, or whatever they call it. Bounce refers to multiple contiguous events reduced to a same event. Your problem is one (or more) event(s) reduced to zero events <img src='http://unscriptable.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
IMHO!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uberVU - social comments</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-33</link>
		<dc:creator>uberVU - social comments</dc:creator>
		<pubDate>Wed, 02 Dec 2009 11:26:49 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-33</guid>
		<description>&lt;strong&gt;Social comments and analytics for this post...&lt;/strong&gt;

This post was mentioned on Twitter by fstraps: http://3.ly/n61 Debouncing Javascript Methods &#124; great - $(window).resize(function(){console.log(&#039;resized&#039;);}.debounce()); #3lyfic...</description>
		<content:encoded><![CDATA[<p><strong>Social comments and analytics for this post&#8230;</strong></p>
<p>This post was mentioned on Twitter by fstraps: <a href="http://3.ly/n61" rel="nofollow">http://3.ly/n61</a> Debouncing Javascript Methods | great &#8211; $(window).resize(function(){console.log(&#8216;resized&#8217;);}.debounce()); #3lyfic&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Throttling Interaction with jQuery &#124; elc technologies - Blog : Ruby on Rails, iPhone, Flash, Agile, Interactive Design</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-32</link>
		<dc:creator>Throttling Interaction with jQuery &#124; elc technologies - Blog : Ruby on Rails, iPhone, Flash, Agile, Interactive Design</dc:creator>
		<pubDate>Sun, 29 Nov 2009 14:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-32</guid>
		<description>[...] In short, throttling will reduce the rate of a repeated event whereas debouncing will ensure that only one signal for a given event is fired within a fixed amount of time. (A much better and detailed explanation can be found here) [...] </description>
		<content:encoded><![CDATA[<p>[...] In short, throttling will reduce the rate of a repeated event whereas debouncing will ensure that only one signal for a given event is fired within a fixed amount of time. (A much better and detailed explanation can be found here) [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-31</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Fri, 09 Oct 2009 20:07:18 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-31</guid>
		<description>Very helpful, thanks!</description>
		<content:encoded><![CDATA[<p>Very helpful, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitter Trackbacks for Debouncing Javascript Methods &#124; Unscriptable.com [unscriptable.com] on Topsy.com</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-30</link>
		<dc:creator>Twitter Trackbacks for Debouncing Javascript Methods &#124; Unscriptable.com [unscriptable.com] on Topsy.com</dc:creator>
		<pubDate>Mon, 31 Aug 2009 10:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-30</guid>
		<description>[...] Debouncing Javascript Methods &#124; Unscriptable.com  unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods &#8211; view page &#8211; cached  Debouncing Javascript Methods, ... a user could simply lean on the Tab key to navigate from one end of the form to the other. If the user were lucky enough to be on a fast network connection and had a fast enough browser, this would go fairly smoothly. However, the server would get absolutely hammered by all of the XHR requests necessary to populate the side-bar! &#8212; From the page [...] </description>
		<content:encoded><![CDATA[<p>[...] Debouncing Javascript Methods | Unscriptable.com  unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods &ndash; view page &ndash; cached  Debouncing Javascript Methods, &#8230; a user could simply lean on the Tab key to navigate from one end of the form to the other. If the user were lucky enough to be on a fast network connection and had a fast enough browser, this would go fairly smoothly. However, the server would get absolutely hammered by all of the XHR requests necessary to populate the side-bar! &mdash; From the page [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: armdros</title>
		<link>http://unscriptable.com/2009/03/20/debouncing-javascript-methods/#comment-29</link>
		<dc:creator>armdros</dc:creator>
		<pubDate>Fri, 28 Aug 2009 08:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://unscriptable.com/?p=7#comment-29</guid>
		<description>Hey John, I appreciate you for your help!!
I Think You are very clever. Thankyou</description>
		<content:encoded><![CDATA[<p>Hey John, I appreciate you for your help!!<br />
I Think You are very clever. Thankyou</p>
]]></content:encoded>
	</item>
</channel>
</rss>

