
How do I create a link that opens a new window?

Hi,
Start with a normal HTML link (possibly one that opens in a new window as described in the answer to the previous question). Then use the ONCLICK attribute to open a window with the desired appearance for those readers with JavaScript supported and enabled.
<a href="example.html" target="popup"
onclick="window.open('example.html', 'popup',
'width=300,height=150'); return false">View window</a>
Thanks.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.