Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nimaa77
Created November 8, 2018 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nimaa77/d0075be335dfb0643455381b5c7ab981 to your computer and use it in GitHub Desktop.
Save nimaa77/d0075be335dfb0643455381b5c7ab981 to your computer and use it in GitHub Desktop.
function $(selector) {
return document.querySelector(selector)
}
// Select Body Tag
$("body");
// Select By ID
$("#SomeID");
// Select By Class
$(".btn");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment