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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -