|
|
 |
|
|
Pages: 1
Form Fields
(Click here to view the original thread with full colors/images)
Posted by: MK
These confuse the hell out of me. I know how to make one and all that crap...but how do you direct it to go to a webpage that is clicked on? Such as if you have a drop down menu for choices. Also, how do you do it if you want it password protected?
------------------
"A Day To Dream. A Lifetime To Act."
Posted by: Scav
Just so you arnt left wondering, I've no clue hehe 8)
Posted by: MK
They're too confusing...heh, but I need to know! http://www.opentechsupport.net/forums/frown.gif
------------------
"A Day To Dream. A Lifetime To Act."
Posted by: Scav
<script language="JavaScript">
function menu()
{
var URL = document.menu.selector.options[document.menu.selector.selectedIndex].value;
top.location.href = URL; target = '_self';
}
</script>
<form action="$boardurl/$forumsprog" method="post" name="menu">
<select name="selector" onChange="menu()">
<option value="?">Forum Jump
Well thats just something i copied and pasted and cleaned up a little bit from a forum cgi. Its one of those little drop down menus that lets you change forums. Well Im to tired right now to go over it but it should be pretty evident what it does. That should work for what you need
Posted by: MK
thanks
------------------
"A Day To Dream. A Lifetime To Act."
|
|
|
|
|