Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening a New Browser Window

Status
Not open for further replies.

Enya

MIS
Dec 3, 2004
17
0
0
US
When I click on a link - it should open a new browser window. How can I do this??

Thanx for the help.
 
hello

u can use javasacript for opening a new window..
by using window.open("filename") methos...

bye

 
Hi
you can use the attribute TARGET with the value "_blank". It'll cause to open the link in a new browser window.

Example :


<a href=&quot;acme.html&quot; TARGET=&quot;_blank&quot;> ACME </a>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top