Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

get rid of go button 1

Status
Not open for further replies.

maxelcat

Technical User
Oct 19, 2006
79
Hi all

I have a select box that is used to pick a page to navigate to, done using php but I think its a html question...

Anyway, it has a rather ugly little "Go" button next to it. I think I have seen forms that automaticfally submit as you click on your selection - is this onfocus???

How do I go about getting rid of the go button?

Thanks in advance

Edward

you can view the offending button here:


"I love deadlines - I love the noise they make as they go wishing past" (not mine of course, but very ture...0
 
I guess this is what you want:
Code:
<form action="school_navigation.php" method="get" name="school_navigation">

<select name="navigation" size="1" [!]onchange="document.forms['school_navigation'].submit()"[/!]>

<option value="school_intro.php">introduction</option>
<option value="school_work.php">working with Maxelcat</option>
<option value="school_sitemap.php">package sitemap</option>
<option value="school_content.php">obtaining content</option>
<option value="school_documents.php">documents for printing</option>
<option value="school_next.php">what's next</option>
	  

</select>
[!][s]<input type="submit" value="Go->" />[/s][/!]

</form>

-kaht

[small](All puppies have now found loving homes, thanks for all who showed interest)[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top