Friends I have several DIVs in my page, each with its ID, but with the same pattern, for example "checker-001", "checker-002", and so on ... where, I use a JS to change its characteristics, for example
$('#checker-363').removeClass('UmaVelhaClass').addClass('UmaNovaClass');
That's quite simple and useful.
Here's my question : Is it possible to exchange hundreds of DIVs at a time? with a single command? for example changing the "number" by a "*":
$('#checker-*').removeClass('UmaVelhaClasse').addClass('UmaNovaClasse');
Or am I forced to loop through this?