Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #19189, comment 24


Ignore:
Timestamp:
11/25/2011 10:27:11 AM (13 years ago)
Author:
GaryJ
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19189, comment 24

    initial v1  
    1 The equivalent code to azaozz's snippet, for jQuery 1.7+, using a delegated event (as `#TB_window` doesn't exist at the time the handler is being attached, as you pointed out) would be:
     1The almost equivalent code to azaozz's snippet, for jQuery 1.7+, using a delegated event (as `#TB_window` doesn't exist at the time the handler is being attached, as you pointed out) would be:
    22{{{
    33jQuery(document).on('unload', '#TB_window', function(e){
     4  console.log('#TB_window unloaded.');
    45  console.log(e);
    56});