Misc 01: Open a New Browser Window or Tab
Open a New Browser Window
To open a new browser window as a popup, the below code need to be placed within body tag of your HTML code.
<a href="javascript:void(0);" target="popup" onclick="window.open('LINK_TO_PAGE','name','width=600,height=400')">Open page in new window</a>
Open a New Browser Tab
To open a new browser tab, the below code need to be placed within body tag of your HTML code.
<a href="LINK_TO_PAGE" target="_blank">Open page in new tab</a>
Comments
Post a Comment