Skip to content

Instantly share code, notes, and snippets.

@drakvuf
Created February 13, 2016 21:45
Show Gist options
  • Save drakvuf/05324d7292c8418bdddc to your computer and use it in GitHub Desktop.
Save drakvuf/05324d7292c8418bdddc to your computer and use it in GitHub Desktop.
//jQuery
var el = $('.example');
el.removeClass('className');
//native Js
var el = document.querySelector('.example');
el.classList.remove('className');
@drakvuf
Copy link
Author

drakvuf commented Feb 13, 2016

Remove class with jQuery and with native Javascript.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment