Is there a jQuery event that gets fired when a user selects a value from a drop down list?
I need to load the next part of a form based on the selection a user makes in the first drop down and would like to avoid a button press.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
.change()event is fired when someone selects a value from a list.If you don’t have a blank default value as the first option (‘Select One’),
you’ll need to explicitly trigger the .change event when the page loads to display whatever content for the first item.