• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML Question

paruhd0x

Diamond Member
What is the code to make a link open another window that is a specific size and has no toolbar and can't be resized? Thanks.
 
<A HREF=&quot;nameofdocument.html&quot; onClick=&quot;window.open('urlofpageyouwanttoopen.html', 'nameofnewwindow',
config='height=300,width=300')&quot;>Click To Open New Window</A>


or use :

<A HREF=&quot;#&quot; onClick=&quot;window.open('urlofpageyouwanttoopen', 'nameofnewwindow',
config='height=300,width=300')&quot;>Click to Open New Window</A>


if you dont want the main page to go anywhere...
 
Back
Top