select targets & frames

admin

Administrator
Staff member
Hi y'all:<br />
<br />
I'm about to beat my head o nthe wall [ which won't be pretty trust me ] -- i hope you can help<br />
<br />
I have a index.html that is set with frames -- top & bottom -- all links are to be loaded into the top frame. then on the top.html page we have a form with a select target is set to "top" like on the index page -- however, when you click the "Take Me There" button, it moves the whole page to the new page instead of staying in the frame -- let me paste the code here [if it's possible] -- maybe someone can tell me what my brain refuses too LoL<br />
<br />
<br />
Thanks!<br />
Gemmy<br />
<br />
<FORM><br />
<SELECT NAME="list" target="top" style="font-size: smaller pt; font-weight: light; font-style: normal; cursor: hand; color:#FFFFFF; background-color:#000000; text-align: left; line-height: 4px"><br />
<option value="http://linkhere.com">Coming Soon!</option><br />
</SELECT><br />
<br><br />
<br><br />
<INPUT TYPE=BUTTON VALUE="Take Me There" onClick="top.location.href=http://www.webdeveloper.com/forum/archive/index.php/this.form.list.options [this.form.list.selectedIndex].value" STYLE="font-family:arial; font-size:10px; color:#FFFFFF; background-color:#000000; border:1px beveled: #FFFFFF"><br />
</FORM><!--content-->i think i saw this somewhere before, where you've currently got <option value="http://linkhere.com">Coming Soon!</option><br />
try<br />
<option value="http://linkhere.com" target="framename">Coming Soon!</option>don't forget to change the frame name :)<br />
<br />
hopefully this works..<!--content-->I want to thank everyone for their help...the problem has been fixed now :-)<!--content-->on behalf of everyone who posted, it's a pleasure<!--content-->
 
Back
Top