I am familiar with selecting the class "myClass" using $(".myClass"), but my question is how do I select the child link within an element with the class "myClass" using jQuery?
Here is a sample of the code:
<a href=#>Home</a>
<div class="myClass">
<a href="http://www.google.com">Google</a>
</div>
Here is the CSS code associated with it:
a{text-decoration:none}
.myClass{
color:#FFFF00
}
.myclass a{ background: #00FFFF}
Thank you for your help!