How To Select Elements With Exact One Class Name?
so I have,
- abc
Solution 1:
You can use the following attribute selector, I suppose:
$('li[class=foo]');
Here's a JSFiddle to play with. )
Post a Comment for "How To Select Elements With Exact One Class Name?"