PDA

View Full Version : HTML gurus


taked0wn
04-13-2001, 03:01 AM
Ok I have drop down menues on my site, the only problem is that the link opens in the same window when its clicked. How can I make it so that it opens in a new window?
You can view the source on this page
Just go to the page and click view source

http://www.lolitabutt.com/formcode.txt

Thanks too all that reply

tenletters
04-13-2001, 04:21 AM
Try <base target="_blank">

Place tag right after your <body> tag

hp
04-13-2001, 04:25 AM
<form target="_blank" ....>
should also do it

taked0wn
04-13-2001, 04:27 AM
Naw, didn't work, thanks anyway dude. Anyone else got anything?

Pinhead
04-13-2001, 06:35 AM
please taked0wn, not so fast... hp and tenletters have actually presented you with the correct HTML. If it doesn't work, your browser doesn't adhere to currrent HTML standards.

candidpublishinginc
04-13-2001, 01:53 PM
Yeah that HTML should work fine.

Dawgy
04-13-2001, 02:02 PM
taked0wn i looked at your source code. the javascript you are using for the jump is over riding the target tag:

select name="menu3" onChange="MM_jumpMenu('parent',this,0)"

that part where it says parent, is the current browser, and it overrides the target=blank.

i'd suggest using a different javascript. i use this one constantly:

http://javascript.internet.com/navigation/menu-automatic.html

im sure you can add a target tag or change the window.location.href to window.open or something if u want a new window http://bbs.adultwebmasterinfo.com/ubb/smile.gif

taked0wn
04-13-2001, 04:36 PM
Thanks Man!! I knew something was wrong