javascript - Event on child window refresh -


i creating child window in javascript using following code:

var wnd = window.open( url ); 

how can determine whether child window refreshed or not? there event it?

thanks in advance.

i don't think there's event might looking events unload , beforeunload (the latter expecting string shown in popup). these triggered when: closing window, navigating new page or refreshing actual page.

so in case may write like:

var wnd = window.open( url ); wnd.onbeforeunload = function() { here } 

have @ this post more examples.


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

excel - I can't get the attachement of the email PHP -

node.js - Express and Redis - If session exists for this user, don't allow access -