G gell1981 New member May 25, 2009 #1 Im adding a link to a web page but can't remember something. Im looking to create a link that when clicked it takes you to a new page but doesn't open in a new window.. whats the tag/code please.
Im adding a link to a web page but can't remember something. Im looking to create a link that when clicked it takes you to a new page but doesn't open in a new window.. whats the tag/code please.
V vhinz New member May 25, 2009 #2 <a href="url" target="_self">The link</a> change the url to the page/link where you want to be redirected..
<a href="url" target="_self">The link</a> change the url to the page/link where you want to be redirected..
C Carly New member May 25, 2009 #3 An ordinary link will use the same window: <a href="link.htm">Link</a> Target="_blank" will open a new window: <a href="link.htm" target="_blank">Link</a>
An ordinary link will use the same window: <a href="link.htm">Link</a> Target="_blank" will open a new window: <a href="link.htm" target="_blank">Link</a>