Link opening in new window

<!-- m --><a class="postlink" href="http://www.carpenoctem.tv/haunt/or/indexold.html">http://www.carpenoctem.tv/haunt/or/indexold.html</a><!-- m --><br />
<br />
on the above page, i have it set so that all of the links (and there are a lot) are set to open in a new window.<br />
<br />
however, there are about 10 links that i do NOT want to open in a new window.<br />
<br />
right now there is a <base target="_blank"><br />
so that the links open in a new window.... is there a way that i can make it so that the selected few open in the same window (is there a target="_same" code that i can put on the 10 links? or do i have to add target="_blank" to every link on the page that i want in a new window?<br />
<br />
<br />
am i too confusing in my question?<br />
<br />
Thanks for putting up with me...<br />
<br />
Mark<!--content-->remove the target all together and the link will open in the currently open window :)<br />
if thats what you mean?<br />
or do you mean like a frame, where everything loads into the same frame (window), if that's the case then i don't think you can sorry :)<!--content-->what i want, is all but 10 links to open in a new window....<br />
<br />
so is there code that i can add to those 10 links to make it load in the same window? or do i have to add code the other 100 links<!--content-->I believe target="_self" prevents a page from loading in a new window.<!--content-->in JS you can use "this.self" to prevent it from opening in a new window. not sure if it works in reg HTML though<br />
<br />
btw i like the fading effect on your site. did you make that script yourself or did you find it somewhere?<!--content--><base target="_blank"> is deprecated and shouldn't be used.<br />
<br />
add target to all links and the ones you don't want to use a target then don't put one.<br />
<br />
but if you must use that then for the ones you don't want to open in a new window use _parent or _self<!--content-->
 
Back
Top