Given html such as :
<div data-points="800">Jonh</div>
<div data-points="200">Jack</div>
<div data-points="1200">Julian</div>
How to select elements were the value is superior to 1000
(x>1000) ?
Preference : via CSS selectors. If no such thing, then I will re-ask for a JQuery / JS answer.
Eventually used :
var x = 1000;
$("div").each(function() {
if ($(this).attr('data-points') > x) {
$(this).addClass('larger-than-x'); // Or whatever
}
});