How can I select all elements with a specific CSS property using jQuery? For example:
.Title { color:red; rounded:true; } .Caption { color:black; rounded:true; }
How to choose a property named "rounded"?
The CSS class name is very flexible.
$(".Title").corner(); $(".Caption").corner();
How to replace these two operations with one operation. Maybe something like this:
$(".*->rounded").corner();
Is there a better way to do this?
javascript jquery css jquery-selectors
ebattulga Aug 03 '09 at 6:02 2009-08-03 06:02
source share