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!

link|improve this question

I don't think there is an easy way with jQuery. You might just have to get the contents of rel using .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
It's a pretty poor plugin to be storing data like that in the rel attribute. Should be using the data-xxx="" or at least storing the data as JSON at the very least. – Dunhamzzz Mar 29 '11 at 9:20
feedback

3 Answers

up vote 1 down vote accepted

Here is one way:

$("#product-thumbs-list a").each(function(index) {
   var arrTemp = $(this).attr("rel").split("smallImage: ");
   var value = arrTemp[1];
   alert(value);
});

Live test case.

link|improve this answer
This works great, as long as you donsn't input anything after the smallImage value. Well, at least i won't. Thx – Maartin Mar 29 '11 at 11:33
@Maartin that's very true.. to support such scenario you can add another split like this: var value = arrTemp[1].split(", ")[0]; assuming the format is consistent. jsFiddle example for this case: jsfiddle.net/yahavbr/4FGzY/1 – Shadow Wizard Mar 29 '11 at 11:40
feedback

you can get the rel attributes that returns the string "useZoom: 'cdonZoom', smallImage: '1.jpg'". Than you can split the string using ":" and get the last array item.

I hope it's helpful

link|improve this answer
feedback

Superbly ugly, but you can use the dreaded eval(), provided that the rel data are "well-formed":

$(function() {
    $('a').mouseover(function() {
        eval('var rel = {' + $(this).attr('rel') + '};');
        $('#out').text(rel.smallImage);
    });
});

With HTML:

<ul id="product-thumbs-list">
    <li><a href="1-big.jpg" rel="useZoom: 'cdonZoom', smallImage: '1.jpg'">link1</a></li>
    <li><a href="2-big.jpg" rel="useZoom: 'cdonZoom', smallImage: '2.jpg'">link2</a></li>
</ul>
<p id="out"></p>

Demo.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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