MrsTimberCarter
11-01-2005, 02:57 AM
Hey-
i was wonder what is the code for when you click on a link to open up in a new window??? thanks
i was wonder what is the code for when you click on a link to open up in a new window??? thanks
|
View Full Version : new window links MrsTimberCarter 11-01-2005, 02:57 AM Hey- i was wonder what is the code for when you click on a link to open up in a new window??? thanks pb&j 11-01-2005, 04:34 AM add this to your link tags... target="_blank" example... <a href="newpage.html" target="_blank"> text or image here </a> Neurologist 11-02-2005, 10:05 PM I use target="_new", personally. pb&j 11-02-2005, 10:13 PM I use target="_new", personally. that would be ok, but "_new" may be viewed as an actual name for an area and might not open a new link window upon each and every click. "_blank" is a reserved special value that would do so. |