[jQuery] Re: Match a named dropdown
> To match that single select element, do: > > $("select[name=opportunity_type]").change(function() { That's works fine, thanks a lot Josh. -- Damien
[jQuery] Re: Match a named dropdown
I'm looking for a way to match a dropdown with a specific name. To match that single select element, do: $("select[name=opportunity_type]").change(function() { etc. }); -- Josh