I have a simple function that opens a new window of custom size with no toolbars -
When this page opens there are a couple of links to pages that I would like to be opened in the same window. Using target="_self" in the link seems to still open another window complete with toolbars.
Is there a javascript way to open the links in the same window as was created with the function above?
Thanks
Code:
function makeNewWindowTC() {newWindow = window.open("tandcs.htm","","height=700,width=700")}
When this page opens there are a couple of links to pages that I would like to be opened in the same window. Using target="_self" in the link seems to still open another window complete with toolbars.
Is there a javascript way to open the links in the same window as was created with the function above?
Thanks