Opening a Single New Browser Window for LinksCreating a link that opens up a new browser window when it's clicked on,as in the following link:
This will open a single new window. Each link that includes the attribute TARGET="_new" in your A HREF tag will open in this same new window. <A HREF="http://www.webdiner.com/" TARGET="_new">Visit Web Diner </A>
Opening a New Browser Window for Each LinkIf you want to open a new browser window for each link that is clicked on, include the attribute TARGET="_blank" in your A HREF tag.<A HREF="http://www.webdiner.com/" TARGET="_blank">Visit Web Diner </A>
|