I want to select span of $(this) element, how i can do it?
i want something like this:
http://jsfiddle.net/W28fE/2/
but with one ( $(this) ) span element hover effect, not 3
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.
$(this).children(‘:nth-child(1)’).
jquery child selector :
http://api.jquery.com/nth-child-selector/
for your question :
$(this).children(‘span:nth-child(1)’)
or something like this: