DEV Community

Discussion on: The 3 most common DOM selectors

Collapse
 
grahamthedev profile image
GrahamTheDev

IDs are still useful so be careful with sweeping statements like “avoid IDs altogether”.

Especially important in accessibility for WAI-ARIA for example to associate controls with each other.

I agree with the sentiment of preferring classes over IDs, just thought I would add some clarity as people take things at face value!

Collapse
 
ayabouchiha profile image
Aya Bouchiha

Me too I prefer classes :)
Thank you a lot!