acefire
06-09-2003, 09:56 PM
Ok....I have links in one cell and when people click on them, they open in a new window, but I want them to open in the current browser. How would I do that?
|
View Full Version : Link openings. acefire 06-09-2003, 09:56 PM Ok....I have links in one cell and when people click on them, they open in a new window, but I want them to open in the current browser. How would I do that? pb&j 06-09-2003, 10:52 PM add TARGET="_top" to your links... <a href="Somepage.html" target="_top"> click </a> acefire 06-10-2003, 01:09 AM Thank you. |