If I have set of elements like so:
$('table input, table select').focus( function(){})
… how can I tell if it’s a input or a select that has focus?
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.
Use event.target to inspect the type of the element that has been clicked –
http://jsfiddle.net/ipr101/vJPr3/
EDIT
Clearer example without the use of event.target –
http://jsfiddle.net/ipr101/vJPr3/1/