Click to See Complete Forum and Search --> : Window Navigation Help!


NamVeteran
07-18-2003, 02:19 PM
I'm Having a problem... I have a web site that I edit using JavaScript. One page is a page with links... but when I click on a link it opens in a new window! I dont want it to do that! I want it to open in the same window. I tried using target="main", but that didnt work... is that the right code?
Please Help!

if you dont understand what im saying, go to the page..
http://namveteran.bravepages.com/Stories.html

sumyounguy
07-18-2003, 02:51 PM
Instead of this:
<a href="http://namveteran.bravepages.com/Vietnam.html"target="Main">
Use:
<a href="http://namveteran.bravepages.com/Vietnam.html" target="_self">

Make sure you get the space before target... you left that out in your original

David Harrison
07-18-2003, 02:55 PM
Since there is no frame on your page called main then it will open a new window. If you just remove the target attribute from the a tags it should solve the problem.