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

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -