JavaScript "hasClass()", "addClass()", "removeClass()" helper functions

If you're like me and come from jQuery to pure JavaScript, these helper functions might be very helpful for you: function hasClass(el, className) { if (el.classList) return el.classList.cont...

Read full article