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

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

html - Outlook 2010 Anchor (url/address/link) -

android - How to create dynamically Fragment pager adapter -