<?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: Live Query</title>
	<atom:link href="http://net.tutsplus.com/freebies/plugins/live-query/feed/" rel="self" type="application/rss+xml" />
	<link>http://net.tutsplus.com/freebies/plugins/live-query/</link>
	<description>Web Development &#38; Design Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 22:51:56 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: oyanamoy</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-102249</link>
		<dc:creator>oyanamoy</dc:creator>
		<pubDate>Fri, 04 Sep 2009 23:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-102249</guid>
		<description>why do we have to add the &quot;return false;&quot; statement at the end of the function after using alert() ?</description>
		<content:encoded><![CDATA[<p>why do we have to add the &#8220;return false;&#8221; statement at the end of the function after using alert() ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Electric Graffiti</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-71074</link>
		<dc:creator>Electric Graffiti</dc:creator>
		<pubDate>Thu, 11 Jun 2009 20:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-71074</guid>
		<description>Awesome... Just what i needed</description>
		<content:encoded><![CDATA[<p>Awesome&#8230; Just what i needed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Groningen</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-34751</link>
		<dc:creator>Groningen</dc:creator>
		<pubDate>Mon, 09 Feb 2009 09:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-34751</guid>
		<description>Realy nice script, helps realy if you don&#039;t want to run a dispatcher again</description>
		<content:encoded><![CDATA[<p>Realy nice script, helps realy if you don&#8217;t want to run a dispatcher again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-32337</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Fri, 30 Jan 2009 04:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-32337</guid>
		<description>Broken demo link. It is possible to have a report broken links button on this site?</description>
		<content:encoded><![CDATA[<p>Broken demo link. It is possible to have a report broken links button on this site?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jmmm</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-23200</link>
		<dc:creator>Jmmm</dc:creator>
		<pubDate>Sun, 14 Dec 2008 20:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-23200</guid>
		<description>Thx a lot ! It was really missing..</description>
		<content:encoded><![CDATA[<p>Thx a lot ! It was really missing..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilles Ruppert</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-22576</link>
		<dc:creator>Gilles Ruppert</dc:creator>
		<pubDate>Wed, 10 Dec 2008 15:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-22576</guid>
		<description>@Christopher: there is no specific syntax to event delegation. Christian Heilmann has a good post about here: 
http://icant.co.uk/sandbox/eventdelegation/
&amp; Dan Webb wrote a jQuery plugin
http://www.danwebb.net/2008/2/8/event-delegation-made-easy-in-jquery

What I tend to do is bind the event on the parent &amp; then check for classes of the target. In jQuery code it looks similar to this:
&lt;code&gt;
$(&#039;ul&#039;).click(function(e){
  var $t = $(e.target); // converts the target into a jQuery object
  
  // this kind of code is needed if you want to do something different depending   on the item clicked 
  if ($t.hasClass(&#039;.next&#039;)) {
    getNext($t);
  } else if ($t.hasClass(&#039;.prev&#039;)) {
    getPrev($t);
  }

  // or you can do this if you just want to do the same thing
 $t.css(&#039;color&#039;, &#039;red&#039;); // makes the clicked element red

  return false; // stop the event propagation &amp; default action old school way
});
&lt;/code&gt;

This is just a quick example &amp; should not be used in production code (it might have some errors in it, I just quickly typed it into the box);

Hope this is helpful</description>
		<content:encoded><![CDATA[<p>@Christopher: there is no specific syntax to event delegation. Christian Heilmann has a good post about here:<br />
<a href="http://icant.co.uk/sandbox/eventdelegation/" rel="nofollow">http://icant.co.uk/sandbox/eventdelegation/</a><br />
&amp; Dan Webb wrote a jQuery plugin<br />
<a href="http://www.danwebb.net/2008/2/8/event-delegation-made-easy-in-jquery" rel="nofollow">http://www.danwebb.net/2008/2/8/event-delegation-made-easy-in-jquery</a></p>
<p>What I tend to do is bind the event on the parent &amp; then check for classes of the target. In jQuery code it looks similar to this:<br />
<code><br />
$('ul').click(function(e){<br />
  var $t = $(e.target); // converts the target into a jQuery object</p>
<p>  // this kind of code is needed if you want to do something different depending   on the item clicked<br />
  if ($t.hasClass('.next')) {<br />
    getNext($t);<br />
  } else if ($t.hasClass('.prev')) {<br />
    getPrev($t);<br />
  }</p>
<p>  // or you can do this if you just want to do the same thing<br />
 $t.css('color', 'red'); // makes the clicked element red</p>
<p>  return false; // stop the event propagation &amp; default action old school way<br />
});<br />
</code></p>
<p>This is just a quick example &amp; should not be used in production code (it might have some errors in it, I just quickly typed it into the box);</p>
<p>Hope this is helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-22289</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Mon, 08 Dec 2008 17:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-22289</guid>
		<description>I&#039;ve used LiveQuery on a recent side project and heard about the problems, so I attempted to try out Delegation, but I couldn&#039;t figure out the syntax. Anyone know of a good explanation/tutorial on how to use it? I&#039;m not a total newbie, but I couldn&#039;t figure it out. If it&#039;s the lighter, faster solution, I feel like I should know more. Maybe Net Tuts could look into this???</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used LiveQuery on a recent side project and heard about the problems, so I attempted to try out Delegation, but I couldn&#8217;t figure out the syntax. Anyone know of a good explanation/tutorial on how to use it? I&#8217;m not a total newbie, but I couldn&#8217;t figure it out. If it&#8217;s the lighter, faster solution, I feel like I should know more. Maybe Net Tuts could look into this???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gogi</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-22232</link>
		<dc:creator>gogi</dc:creator>
		<pubDate>Mon, 08 Dec 2008 10:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-22232</guid>
		<description>hi, i don&#039;t understand it much. but does this mean i have to install a plugin for firefox/ie before i can use this one?</description>
		<content:encoded><![CDATA[<p>hi, i don&#8217;t understand it much. but does this mean i have to install a plugin for firefox/ie before i can use this one?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Gunther</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-21193</link>
		<dc:creator>Chris Gunther</dc:creator>
		<pubDate>Mon, 01 Dec 2008 17:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-21193</guid>
		<description>I&#039;ve used LiveQuery on my site to handle the issue of dynamically added content but now I&#039;ll have to look into using event delegation instead. Thanks for pointing out that alternative.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used LiveQuery on my site to handle the issue of dynamically added content but now I&#8217;ll have to look into using event delegation instead. Thanks for pointing out that alternative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sudhir</title>
		<link>http://net.tutsplus.com/freebies/plugins/live-query/#comment-20814</link>
		<dc:creator>Sudhir</dc:creator>
		<pubDate>Fri, 28 Nov 2008 05:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=1927#comment-20814</guid>
		<description>hmmmm... wouldn&#039;t it be better to use event delegation on the parent element being updated?</description>
		<content:encoded><![CDATA[<p>hmmmm&#8230; wouldn&#8217;t it be better to use event delegation on the parent element being updated?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 2/7 queries in 0.006 seconds using memcached
Content Delivery Network via 

Served from: psdtutsplus.com @ 2009-11-21 16:27:34 -->