jQuery and IFrame load events -
i have read in several write-ups jquery can facilitate event listening on iframe - each reload.
i'm getting initial event notice - subsequent reloads events silent/ignored.
code sample:
$('#some_frame_id').bind('load', modnamespace.ehandler());
however, if drop now-seemingly-frowned-upon onload
syntax, expected results - using same handler:
iframe(class='foo'src='/path/to/resource' id='some_frame_id' name-'some_frame_id' onload='modnamespace.ehandler();')
this gets me results i'm looking i'd still understand problem jquery implementation.
(note: iframe markup jade)
Comments
Post a Comment