Skip to content

Instantly share code, notes, and snippets.

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

drakvuf commented Feb 13, 2016

Toggle class example with jQuery and with native Javascript.

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