I've got the following scenario:

var el = 'li';

and there are 5 <li>'s on the page each with a data-slide=number attribute (number being 1,2,3,4,5 respectively).

I now need to find the currently active slide number which is mapped to var current = $('ul').data(current); and is updated on each slide change.

So far my tries have been unsuccessful, trying to construct the selector that would match the current slide:

$('ul').find(el+[data-slide=+current+]);

does not match/return anything…

The reason I can't hardcode the li part is that this is a user accessible variable that can be changed to a different element if required, so it may not always be an li.

Any ideas on what I'm missing?

link|improve this question

2  
you sure within your .find(el+[data-slide=+current+]); is the code that you write? it seems you missed some quotations to "[data-slide]" – xandy Nov 16 '10 at 5:20
feedback

2 Answers

up vote 29 down vote accepted

You have to inject the value of current into an Attribute Equals selector:

$("ul").find("[data-slide='" + current + "']");
link|improve this answer
I've had to do this a few times before... would be nice if they had a function for this. I think I'll add that to #query... – Mark Nov 16 '10 at 6:36
Nice one, now just one more question in a more general sense. While this works perfectly for my example right now, is there a way I can bring my el variable into something like this? or would it just be $("ul").find("+el+"[data-slide='" + current +"']"); ? – Jannis Nov 16 '10 at 7:30
1  
@Jannis, you could do $("ul").find(el + "[data-slide='" + current +"']");. – Frédéric Hamidi Nov 16 '10 at 9:13
Note. This works without adding an attribute too. You can just add data using $('#element').data('blarg','Whoop!'). No need to append an attribute to the tag itself. – mrbinky3000 Mar 29 at 19:05
@mrbinky3000, an attribute selector only matches actual attributes, so the code in my answer cannot match elements on which only data("slide", number) was called (as the setter form of data() does not create or update data- attributes). To find those elements, you would have to use filter() or one of the plugins that provide a :data() selector. – Frédéric Hamidi Mar 29 at 19:18
feedback

in case you don't want to type all that, here's a shorter way to query by data attribute:

$("ul[slide='" + current +"']");

FYI: http://james.padolsey.com/javascript/a-better-data-selector-for-jquery/

link|improve this answer
1  
Shouldn't the data- not be present? In my test it failed without. $("ul[data-slide='" + current +"']"); – clankill3r Mar 31 at 19:05
feedback

Your Answer

 
or
required, but never shown

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