Whether it is possible to change the url of the pop-up window.
Suppose I open a popup window:
function pop1(){ window.open('http://google.com','wind1'); }
Can you change the URL of the pop-up window "wind1" to "http://msn.com". Something with location.href or any other solution.
For me, when I only changed the end of the url (parameter part), I used a little trick: Load different urls before using new similar urls. I chose to use "about:blank", but any website URL can be used.
Please note that location = site; is the same as location.href = site.
I only use location.href to read the current url.