Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can i select all elements whose ID starts with "player_"?

so i have multiple elements like this.

<div id="player_290x3dfda">text</div>

So every id has a unique stamp on it. How can i select all those elements either with jquery or with pure CSS.

thank you for your help.

share|improve this question
2  
use this api.jquery.com/attribute-starts-with-selector – Mahima Feb 15 '11 at 11:23

3 Answers

up vote 61 down vote accepted

Normally you would select IDs using the ID selector #, but for more complex matches you can use the attribute-starts-with selector (as a jQuery selector, or as a CSS3 selector):

div[id^="player_"]

If you are able to modify that HTML, however, you should add a class to your player divs then target that class. You'll lose the additional specificity offered by ID selectors anyway, as attribute selectors share the same specificity as class selectors. Plus, just using a class makes things much simpler.

share|improve this answer

try this:

$('div[id^="player_"]')
share|improve this answer

You can use meta characters like * (http://api.jquery.com/category/selectors/). So I think you just can use $('#player_*').

In your case you could also try the "Attribute starts with" selector: http://api.jquery.com/attribute-starts-with-selector/: $('div[id^="player_"]')

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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