DEV Community

Discussion on: RIP jQuery: An alternative for modern browsers

Collapse
 
azuryu profile image
Azuryu

I used to use Zepto instead of jQuery. Though a downside is that it didn't got updated for a long while so using it in the future isn't safe anymore. Do I want to use an old library that doesn't fix issues anymore in a new project?

For simple things like class maniuplation I have my own $ wrapper as you can't do much wrong doing element.classList.add() for every element in the collection. But if I need more while limited in allowed file size (e.g. ad developing) I may need an alternative. Cash looks quite interesting and I'll take a looke into it.