Im using a plugin that requires the rel-element to look like this.
<ul id="product-thumbs-list">
<li><a href="1-big.jpg" rel="useZoom: 'cdonZoom', smallImage: '1.jpg'"></li>
<li><a href="2-big.jpg" rel="useZoom: 'cdonZoom', smallImage: '2.jpg'"></li>
</ul>
Is it possible to get the smallImage-value via jQuery?
In this case, '1.jpg, or '2.jpg'.
Thanks!
.attr('rel')and split it into an array then find the result that starts with smallImage and get the filename from that. – Richard Dalton Mar 29 '11 at 9:15