Hi,
I'm trying to select a class inside the same parent class of a link.
This is the html:
<div id="productList">
<ul>
<li class="productListItem">
Product 1 <span class="smallText">stuff</span>
<div class="skuFinder"></div>
<ul class="merchantsInProductList">
<li><a class="merchantLink" href="/Pricing/SkuFinder/1/1">Merchant 1 $5.99</a></li>
</ul>
</li>
</ul>
</div>
When class "merchantLink" is clicked, I'd like to perform a jQuery load into the class "skuFinder"
What is the best way to select the class "skuFinder"?