javascript - How can I keep my popup focused? -


i have created couple of pages content displayed in pop window. have page define 3 links:

<a href = "page1.htm", onclick="window.open(this.href,'content','scrollbars=yes, resizable=yes, left=70,top=20, width=900, height=900,innerwidth=900, innerheight=900'); return false;">page1</a><br /> <a href = "page2.htm", onclick="window.open(this.href,'content','scrollbars=yes, resizable=yes, left=70, top=20, width=900, height=900,innerwidth=900, innerheight=900'); return false;">page2</a><br /> <a href = "page3.htm", onclick="window.open(this.href, 'content',' scrollbars=yes, resizable=yes, left=70, top=20, width=900, height=900, innerheight=900, innerwidth=900'); return false;">page3</a> 

when clicking on link, have popup displayed. when clicking on link, popup minimized. need keep opened , display appropriate content page.

unfortunately, cannot use javascript functions focus popup, since need put links onto vendor's website, allows simple html copied over, when else click link, popup open appropriate content.

is there way achieve have?


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -

django - CSRF verification failed. Request aborted. CSRF cookie not set -