I am not a JQUERY Expert and want to know if its possible to select "Items with no id defined that are nested and have a certain css class defined" ?
Example:
When I look at the downloaded CSS and match rules here is the div:
<div id="type" class="productType">Test Descript <span>$399.00</span> </div>
The CSS that gets applied to the span is:
.rightInfoDiv h1 div.productType {font-size: 14px;line-height: 18px;font-weight: normal;margin-bottom: 0.1em;}
I want to be able to select the "span" so I can get a price. Is this possible ? Any pointers would be appreciated
Thanks very much