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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

handling events with PHP

Status
Not open for further replies.

BlindPete

Programmer
Joined
Jul 5, 2000
Messages
711
Location
US
I have a form with three drop downs. As information is selcted in the first drop down I'd like it to filter the lists in the other two. Then select the next one etc.

I dont want three drop down and three submit buttons, although it works its ugly.

Does anyone know of JS or PHP function that would let me trap the events of a dropdown and auto-reload the page rather then have three submit buttons?


-Pete[noevil]
 
You need the javascript forum...

Basically you're going to put an, onblur="someFunc()"

and someFunc is going to call a

formname.submit()

G'luck.

-Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top