I has some div as follows
<div id="span1"></div>
<div id="span3"></div>
<div id="span5"></div>
<div id="span7"></div>
.....
There is "span" in the id, How to show or hide them by jquery ?
|
I has some div as follows
There is "span" in the id, How to show or hide them by jquery ? |
||||
|
|
|
This should do the trick, if I understand the question correctly.
That said, a much BETTER approach would be to put a class on all the elements you want to manipulate with the same code then use the class to hide the elements as a group.
This is much cleaner. |
|||||||||||
|
|
you can put the selectors of the ones to hide in an array and join then with a comma:
or, add a common class to each:
|
|||||||
|