javascript - JQuery Load, Notify Calling Window? -
i using jquery event "load" notify when entire html window has loaded scripts have executed. understand intention of function used in document.ready event. however, have 1 window spawning other windows , need parent window notified when child window finished loading can insert saved content. can please guide me in right direction.
thank you!
you can check loaded event using load
event
$('#iframe').on('load', function (e) { //....... });
Comments
Post a Comment