![]() |
|
|
|||||||
![]() |
HTML - HTML Code for a FORM help please |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
OK its late and I probably can't see the bindingly obvious, but why wont this work, its in a menu bar on the left panel of a frame set, the main page is called 'main' I want the pages it links to to appear in the 'main' frame but it wont work ??? <form name="form1"> <select name="menu1"> <option value="intro.htm" selected>MAIN PAGE</option> <option value="Images/tattoo/tatpics.html"target="main">TATTOOs 1</option> <option value="Images/tattoo/0002.html"target="main">TATTOOs 2</option> <option value="Images/tattoo/0003.html"target="main">TATTOOs 3</option> <option value="pool/pool.html"target="main">POOL ROOM</option> </select> <input type="button" name="Button1" value="Go" onClick="MM_jumpMenuGo('menu1','parent',0)"> </form> -- E-Mail Addy obet(ng)qfy(qbg)cvcrk(qbg)pbz <---Rot13 it watch out for spam trap in header http://www.goodtraders.com/viewfeedback.php?nick=Borg DONATIONS TO BORG |
|
|
|
|
#2 |
|
Posts: n/a
|
"BORG" <> wrote in message
news:... > > OK its late and I probably can't see the bindingly obvious, but why > wont this work, its in a menu bar on the left panel of a frame set, > the main page is called 'main' I want the pages it links to to appear > in the 'main' frame but it wont work ??? > > <form name="form1"> > Just a guess, but do you need the target="main" as an attribute of the <form> element?? <form name="form1" target="main"> |
|
|
|
#3 |
|
Posts: n/a
|
On Mon, 23 Jun 2003 03:04:57 GMT, "Disco" <>
wrote: >"BORG" <> wrote in message >news:.. . >> >> OK its late and I probably can't see the bindingly obvious, but why >> wont this work, its in a menu bar on the left panel of a frame set, >> the main page is called 'main' I want the pages it links to to appear >> in the 'main' frame but it wont work ??? >> >> <form name="form1"> >> > >Just a guess, but do you need the target="main" as an attribute of the ><form> element?? ><form name="form1" target="main"> > > told you it was late <form name="form1"> <select name="menu1"> <option value="intro.htm">MAIN PAGE</option> <option value="Images/tattoo/tatpics.html">TATTOOs 1</option> <option value="Images/tattoo/0002.html">TATTOOs 2</option> <option value="Images/tattoo/0003.html">TATTOOs 3</option> <option value="pool/pool.html">POOL HALL</option> </select> <input type="button" name="Button1" value="Go" onClick="MM_jumpMenuGo('menu1','parent.frames[\'main\']',1)"> </form> -- E-Mail Addy obet(ng)qfy(qbg)cvcrk(qbg)pbz <---Rot13 it watch out for spam trap in header http://www.goodtraders.com/viewfeedback.php?nick=Borg DONATIONS TO |
|