vote up 0 vote down star

jQuery

$("#myID").each(function() {
  $(this).dosomething;
});

HTML:

<div id="myID">
 <div class="myClass">content</div>
</div>

How do I access myClass from the function? this>myClass ?

flag

1 Answer

vote up 1 vote down check
$(this).children(".myClass")
link|flag
Thank you, sir! :) – Nimbuz Oct 15 at 8:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.