Skip to content

Instantly share code, notes, and snippets.

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

drakvuf commented Feb 13, 2016

Has 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