How to match "input" and "select" elements in jQuery with 1 query
- by MarkL
re,
I have a simple query that works:
$("#test fieldset input").each(function() { })
However, I want to select "input" and "select" elements without having to write 2 "each" queries. Is this possible?
thanks.