Click to See Complete Forum and Search --> : Opening a new window


Linda2005
03-03-2005, 11:54 PM
Hello! I just found this Forum/Website earlier tonight. It looks very informative!

What is the HTML code for having a link that someone clicks on open up in a NEW WINDOW? Any help would be very much appreciated!

Linda

Daniel T
03-04-2005, 12:05 AM
Well, you could use <a href="#" target="_BLANK">link</a>, but keep in mind that not everyone wants their links to open in a new window.

If the link does need to open in a new window, you could also use the (valid) Javascript version:<a href="#" onclick="window.open(this.href); return false">link</a>

Linda2005
03-04-2005, 12:23 AM
Thank you, Daniel! :-)