<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/jquery/tags/event</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 06:15:31 GMT</pubDate>
<item>
<title>(jQuery) .on() - jquery event handler - grindking</title>
<link>http://snipplr.com/view/68045/on--jquery-event-handler/</link>
<description><![CDATA[ <p>.on( events [, selector] [, data], handler(eventObject) )

A delegated-events approach attaches an event handler to only one element, the tbody, and the event only needs to bubble up one level (from the clicked tr to tbody):</p> ]]></description>
<pubDate>Wed, 31 Oct 2012 19:35:29 GMT</pubDate>
<guid>http://snipplr.com/view/68045/on--jquery-event-handler/</guid>
</item>
<item>
<title>(jQuery) Copy one element\'s eventhandlers to another - chlab</title>
<link>http://snipplr.com/view/64750/copy-one-elements-eventhandlers-to-another/</link>
<description><![CDATA[ <p>Here's a snippet for copying (all) the eventhandlers of one element to another with jQuery and effectively cloning the behavior of one element.

Keep in mind that if it's possible, you should just register the same handlers you actually need, instead of just blindly copying all of them. But in some cases, e.g. when using a plugin that you do not wish to modify, this can come in handy.</p> ]]></description>
<pubDate>Thu, 26 Apr 2012 22:02:27 GMT</pubDate>
<guid>http://snipplr.com/view/64750/copy-one-elements-eventhandlers-to-another/</guid>
</item>
<item>
<title>(jQuery) Toggle element in jQuery - Alwaison</title>
<link>http://snipplr.com/view/56399/toggle-element-in-jquery/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 11 Jul 2011 20:26:35 GMT</pubDate>
<guid>http://snipplr.com/view/56399/toggle-element-in-jquery/</guid>
</item>
<item>
<title>(jQuery) Check to see if function triggered by an event - 1man</title>
<link>http://snipplr.com/view/52618/check-to-see-if-function-triggered-by-an-event/</link>
<description><![CDATA[ <p>Rather that using $(element).trigger('click'), check to see if execute has come from an element rather than directly.</p> ]]></description>
<pubDate>Wed, 27 Apr 2011 02:28:27 GMT</pubDate>
<guid>http://snipplr.com/view/52618/check-to-see-if-function-triggered-by-an-event/</guid>
</item>
<item>
<title>(jQuery) Prevent default event action - lamebollock</title>
<link>http://snipplr.com/view/44161/prevent-default-event-action/</link>
<description><![CDATA[ <p>Description: If this method is called, the default action of the event will not be triggered.

For example, clicked anchors will not take the browser to a new URL. We can use event.isDefaultPrevented() to determine if this method has been called by an event handler that was triggered by this event.</p> ]]></description>
<pubDate>Mon, 15 Nov 2010 05:12:25 GMT</pubDate>
<guid>http://snipplr.com/view/44161/prevent-default-event-action/</guid>
</item>
<item>
<title>(jQuery) jQuery Event Delegation - Simple Example - Meander365</title>
<link>http://snipplr.com/view/43537/jquery-event-delegation--simple-example/</link>
<description><![CDATA[ <p>Allow events to bubble up the DOM to overseeing handlers.</p> ]]></description>
<pubDate>Thu, 04 Nov 2010 13:43:11 GMT</pubDate>
<guid>http://snipplr.com/view/43537/jquery-event-delegation--simple-example/</guid>
</item>
<item>
<title>(jQuery) event.preventDefault - rolfthomas</title>
<link>http://snipplr.com/view/43396/eventpreventdefault/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 02 Nov 2010 01:44:13 GMT</pubDate>
<guid>http://snipplr.com/view/43396/eventpreventdefault/</guid>
</item>
<item>
<title>(jQuery) jQuery - Binding a Handler to Multiple Events - Meander365</title>
<link>http://snipplr.com/view/41102/jquery--binding-a-handler-to-multiple-events/</link>
<description><![CDATA[ <p>One bind event, multiple events. Handy.</p> ]]></description>
<pubDate>Tue, 28 Sep 2010 18:37:06 GMT</pubDate>
<guid>http://snipplr.com/view/41102/jquery--binding-a-handler-to-multiple-events/</guid>
</item>
<item>
<title>(jQuery) jQuery - Clickable everything script - LuckyShot</title>
<link>http://snipplr.com/view/37104/jquery--clickable-everything-script/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 11 Jul 2010 12:08:28 GMT</pubDate>
<guid>http://snipplr.com/view/37104/jquery--clickable-everything-script/</guid>
</item>
<item>
<title>(jQuery) Track outbound links with GA and jQuery - errkk</title>
<link>http://snipplr.com/view/36945/track-outbound-links-with-ga-and-jquery/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 08 Jul 2010 17:59:22 GMT</pubDate>
<guid>http://snipplr.com/view/36945/track-outbound-links-with-ga-and-jquery/</guid>
</item>
<item>
<title>(jQuery) jQuery onKeyboardSmashed event Plugin - adamcoulombe</title>
<link>http://snipplr.com/view/30478/jquery-onkeyboardsmashed-event-plugin/</link>
<description><![CDATA[ <p>This jQuery plugin can be used to detect when the user smashes their keyboard.

You can set a threshold as to how many keys need to be depressed in order to trigger the event.</p> ]]></description>
<pubDate>Mon, 29 Mar 2010 14:44:49 GMT</pubDate>
<guid>http://snipplr.com/view/30478/jquery-onkeyboardsmashed-event-plugin/</guid>
</item>
<item>
<title>(jQuery) Stop Event Propagations - gfazioli</title>
<link>http://snipplr.com/view/19684/stop-event-propagations/</link>
<description><![CDATA[ <p>see http://www.undolog.com/2009/08/21/impedire-la-propagazione-degli-eventi-con-jquery/ for detail</p> ]]></description>
<pubDate>Mon, 14 Sep 2009 05:17:43 GMT</pubDate>
<guid>http://snipplr.com/view/19684/stop-event-propagations/</guid>
</item>
<item>
<title>(jQuery) Jquery shift+click event - gerhardsletten</title>
<link>http://snipplr.com/view/18636/jquery-shiftclick-event/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 21 Aug 2009 04:53:45 GMT</pubDate>
<guid>http://snipplr.com/view/18636/jquery-shiftclick-event/</guid>
</item>
<item>
<title>(jQuery) Detect Paste "Event" - quickredfox</title>
<link>http://snipplr.com/view/16745/detect-paste-event/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 07 Jul 2009 22:28:00 GMT</pubDate>
<guid>http://snipplr.com/view/16745/detect-paste-event/</guid>
</item>
<item>
<title>(jQuery) jQuery event namespace - 1man</title>
<link>http://snipplr.com/view/13018/jquery-event-namespace/</link>
<description><![CDATA[ <p>Adding a namespace to an event can make it easier to unbind. It is very easy to unbind all events with the same namespace.</p> ]]></description>
<pubDate>Thu, 12 Mar 2009 06:18:08 GMT</pubDate>
<guid>http://snipplr.com/view/13018/jquery-event-namespace/</guid>
</item>
</channel>
</rss>