Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
jquery or css selector? select all id’s that start with

I need to select all the elements with ids that start with "Monday_", example id="Monday_16"

share|improve this question
1  
Probably it's true – JustinR Oct 14 '12 at 12:18

marked as duplicate by undefined, Christofer Eliasson, Vikdor, HackedByChinese, Barmar Oct 16 '12 at 3:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

You can use attribute starts with selector:

$("[id^='Monday_']");

or better:

$("tagname[id^='Monday_']");

http://api.jquery.com/category/selectors/

share|improve this answer

You can use the attribute starts with selector to accomplish that:

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

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