Using jQuery To Bind And Trigger Event Handlers On Detached DOM Nodes

Posted August 27, 2010 at 5:00 PM by Ben Nadel

Tags: Javascript / DHTML

Often times, we use jQuery to bind event handlers to DOM nodes that are children of the current document tree. When we do this, jQuery stores the event handlers in the given node's "events" collection. These bindings remain in place until they are explicitly unbound or until the DOM nodes are removed from the document (NOTE: Using .detach() does not unbind event handlers). Because of this fact, I think it is tempting to believe that detached DOM nodes can't react to events; but, in fact, the opposite is true - jQuery can both bind and triggered events on nodes that are not part of the currently rendered document.

To demonstrate this, I am going to create a free-standing DOM node within my Javascript. Then, I am going to bind a custom event handler to it and trigger the bound event programmatically.

  • <!DOCTYPE html>
  • <html>
  • <head>
  • <title>jQuery Eventing Binding On Detached DOM Nodes</title>
  • <script type="text/javascript" src="./jquery-1.4.2.js"></script>
  • <script type="text/javascript">
  •  
  • // Create a DOM node; note that this DOM node will not be
  • // part of any DOM tree - it is free standing.
  • var freeNode = $( "<div />" );
  •  
  • // Bind a custom event to the free-standing node. We are
  • // attaching additional information to this event binding
  • // to test the various aspects of event binding.
  • freeNode.bind(
  • "ping",
  • {
  • isAttached: false
  • },
  • function( event, timeLine ){
  • console.log( "Triggered: ", arguments );
  • }
  • );
  •  
  •  
  • // -------------------------------------------------- //
  • // -------------------------------------------------- //
  •  
  •  
  • // Before we try to use the event bindings, let's see if
  • // we can see the attached event handlers.
  • console.log( freeNode.data( "events" ) );
  •  
  • // Now that we have our bound event, let's try to trigger
  • // the custom event on our free-floating DOM node.
  • freeNode.trigger( "ping", [ "preRemove" ] );
  •  
  • // Now, just for a sanity check, let's attach it to the DOM
  • // tree and then remove it -- the expected behavior is that
  • // the event binding will be removed.
  • freeNode
  • .appendTo( "body" )
  • .remove()
  • ;
  •  
  • // Now, let's try to trigger the event on the removed node.
  • freeNode.trigger( "ping", [ "postRemove" ] );
  •  
  • // As a final test, just log the current event bindings.
  • console.log( freeNode.data( "events" ) );
  •  
  • </script>
  • </head>
  • <body>
  • <!-- Intentionally left blank. -->
  • </body>
  • </html>

As you can see, we are creating a detached DIV node. Then, we are binding the custom event, "ping," to that node with some bind-time data. Once the event handler is bound, I am then using jQuery to programmatically trigger the event, all while it is detached from the document.

As a sort of control-case, I am also attaching and removing the node to and from the Body element in order to confirm that remove() still clears all bound data (including the "events" collection). When I run the above code, I get the following console output:

 
 
 
 
 
 
jQuery Can Both Bind And Trigger Events On Detached DOM Nodes. 
 
 
 

As you can see, both the event binding and the event triggering executed successfully while our DIV remained detached from the current document tree. And, just as we have seen previously, attaching and then detaching the DIV resulted in a loss of event binding.

It might seem odd to care about event binding outside the context of the current document tree; but, I have some ideas that I want to play with that leverage this very behavior. More to come on that later.




Reader Comments

Aug 27, 2010 at 11:08 PM // reply »
13 Comments

very cool, i knew this was normal, but never really thought of using it for something useful, you got me thinking tho! look forward to seeing what you come up with!


Aug 28, 2010 at 4:27 AM // reply »
2 Comments

You have me a little curious as to what benefits having an element not attached to the DOM will bring too.


Aug 28, 2010 at 1:30 PM // reply »
70 Comments

My guess is, you're going to create a div and attach web socket or web worker events to it, so that the div itself can interactively build its own contents, prior to attaching itself to the DOM to display its contents.

I'll bet that kind of encapsulation appeals to you. :-)


Aug 30, 2010 at 10:12 AM // reply »
11,238 Comments

@Steve,

Interesting idea with the WebSockets.

@All,

Here's where I was going with that - using jQuery's native event architecture to power publication/subscribe (pub/sub) functionality within a Javascript application's domain model:

http://www.bennadel.com/blog/2000-Powering-Publish-And-Subscribe-Functionality-With-Native-jQuery-Event-Management.htm


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 20, 2013 at 4:38 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Dana, Your confusion is well founded, since this is a very confusing features. In fact, it ONLY works if you use array notation. Meaning, that this: arrayToList( query[ "columnName" ] ) ... read »
May 20, 2013 at 4:34 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
I was thinking chicken and the egg, I wouldn't have expected it to work in the valuelist going in I guess. Maybe I just need a beer, long day :) ... read »
May 20, 2013 at 4:29 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Dana, That's if you're trying to reference a specific row. In this case, we're trying to reference the entire query column as one cohesive value. So, you are correct that if you wanted to output a ... read »
May 20, 2013 at 4:24 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
I thought when you used array notation to reference queries you always had to have the row or it would throw a similar error as well? ... read »
May 20, 2013 at 11:45 AM
Using jQuery's Animate() Step Callback Function To Create Custom Animations
This is really useful. I found out that you don't actually have to use a dummy css property (surprisingly). To animate a property in a linear-gradient for instance I did this this.css('someLinearGra ... read »
May 20, 2013 at 10:51 AM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Josh, Oh snap! You're totally right! I'm not sure I've ever tried that. I did know that you can call a number of other array-methods on ColdFusion query columns: http://www.bennadel.com/blog/167 ... read »
May 20, 2013 at 10:45 AM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Ben - I believe you can achieve the same functionality with ColdFusion's built in ArrayToList() function. ArrayToList( users[ "id" ] ); ... read »
May 20, 2013 at 10:21 AM
My Experience With AngularJS - The Super-heroic JavaScript MVW Framework
Is there any error logging and handling framework in angularjs, if not then in what way I can do this. ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools