I have some DIVs with ID "div1", "div2" ... "divx". I want to perform an operation on them. Is there any way to get the element ID .contains "div". Any other idea?
|
You can use the starts with selector
The above will grab all divs that have an jsFiddle example that makes all divs with id Here's how to handle the trickier case if you want to match In this case we use filter() with a function. The function should return true for when we want a match and false for when we do not. match() and a regex is great for this (you can use
attr() returns the value of the specified attribute, in this case |
|||||
|
|
You could use this (I haven't tested it though):
This will get all If you wanted all the
|
|||
|
|
|
Using ID's like div1, div2, div3 is a bad practice. It's like naming your classes "black-bold-12px" and then assigning those styles to that class. It misses the point on semantics. The right way for doing this would be using a class for all of them. Elements can be of more than one class, using a space as separator:
|
|||||||||||||||||
|