I have read in several write-ups that jquery can facilitate event listening on an iframe - for EACH reload.
I'm only getting the initial event notice - all subsequent reloads events are silent/ignored.
Code sample:
$('#some_frame_id').bind('load', modNamespace.eHandler());
However, if I drop back to the now-seemingly-frowned-upon onLoad
syntax, I get the expected results - using the same handler:
iframe(class='foo'src='/path/to/resource' id='some_frame_id' name-'some_frame_id' onload='modNamespace.eHandler();')
This gets me the results that I'm looking for but I'd still like to understand the problem with my jQuery implementation.
(note: the iframe markup is Jade)