Topic: php help! a question about <select>

so how do you get the <select> box to automatically submit its info without hitting the submit button? like the Jump To does on here.

Re: php help! a question about <select>

That can be done with JavaScript

<select name="something" onchange="javascript:this.form.submit()">

or something like that..