|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Apr 2004
Location: Montreal , Quebec
Posts: 676
|
Drop-down menu
Is it possible to have links from a drop-down menu open in a new window?
If yes....how do you do it?
__________________
![]() TASTY DOLLARS Solo Girls | Hardcore Teens | Milfs Need a good upsell for your members area? Check our TastyFreeFeeds Contact me: ICQ: 323729438 | E-mail: hubert at tastydollars.com |
|
|
|
|
|
#2 |
|
Sofa King Band
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
|
|
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Apr 2004
Location: Montreal , Quebec
Posts: 676
|
thank you very much
__________________
![]() TASTY DOLLARS Solo Girls | Hardcore Teens | Milfs Need a good upsell for your members area? Check our TastyFreeFeeds Contact me: ICQ: 323729438 | E-mail: hubert at tastydollars.com |
|
|
|
|
|
#4 |
|
Sofa King Band
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
|
My pleasure
|
|
|
|
|
|
#5 |
|
Confirmed User
Join Date: Apr 2004
Location: Montreal , Quebec
Posts: 676
|
it does not work.....links open in the main window....I want to know if it's possible to make them open in a new window
__________________
![]() TASTY DOLLARS Solo Girls | Hardcore Teens | Milfs Need a good upsell for your members area? Check our TastyFreeFeeds Contact me: ICQ: 323729438 | E-mail: hubert at tastydollars.com |
|
|
|
|
|
#6 |
|
Confirmed User
Join Date: Apr 2004
Location: Montreal , Quebec
Posts: 676
|
Nobody can tell?
__________________
![]() TASTY DOLLARS Solo Girls | Hardcore Teens | Milfs Need a good upsell for your members area? Check our TastyFreeFeeds Contact me: ICQ: 323729438 | E-mail: hubert at tastydollars.com |
|
|
|
|
|
#7 |
|
Sofa King Band
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
|
Ah, then change this
Code:
window.location.href = object.options[object.selectedIndex].value; Code:
window.open(object.options[object.selectedIndex].value); |
|
|
|
|
|
#8 |
|
Confirmed User
Industry Role:
Join Date: Oct 2002
Location: Upstate, New York
Posts: 8,187
|
Put this in between your <head></head> tags
<script> <!-- function land(ref, target) { lowtarget=target.toLowerCase(); if (lowtargethahahaha"_self") {window.location=loc;} else {if (lowtargethahahaha"_top") {top.location=loc;} else {if (lowtargethahahaha"_blank") {window.open(loc);} else {if (lowtargethahahaha"_parent") {parent.location=loc;} else {parent.frames[target].location=loc;}; }}} } function jump(menu) { ref=menu.choice.options[menu.choice.selectedIndex].value; splitc=ref.lastIndexOf("*"); target=""; if (splitc!=-1) {loc=ref.substring(0,splitc); target=ref.substring(splitc+1,1000);} else {loc=ref; target="_self";}; if (ref != "") {land(loc,target);} } //--> </script> and this anywhere you want it <form action="dummy" method=hahahahahaha><select name="choice" size="1"> <option value="">Text</option> <option value="http://yourURL.com*_blank">Your Text</option> <option value="http://yourURL2.com*_blank">Your Text 2</option> <option value="">----------</option> </select><br><input TYPE="button" VALUE="Go" onClick="jump(this.form)"></form> add *_blank to the end of the URLs you put in the menu. EDIT: Replace the hahahahahah^ above (it got filtered) with method = " post " (no spaces!)
__________________
Skype: j3nn.com ICQ 160370494 My current favorite high-converting sponsor: CrakRevenue |
|
|
|
|
|
#10 |
|
Confirmed User
Industry Role:
Join Date: Oct 2002
Location: Upstate, New York
Posts: 8,187
|
ugh... that whole script I posted is filtered... *SiGH*
__________________
Skype: j3nn.com ICQ 160370494 My current favorite high-converting sponsor: CrakRevenue |
|
|
|
|
|
#11 |
|
Confirmed User
Industry Role:
Join Date: Oct 2002
Location: Upstate, New York
Posts: 8,187
|
Here you go Unfiltered version <- there's the unfiltered version... I didn't know GFY had all those things on lockdown... lol
__________________
Skype: j3nn.com ICQ 160370494 My current favorite high-converting sponsor: CrakRevenue |
|
|
|