Last active
March 7, 2019 12:53
-
-
Save BretCameron/4f751d05edf6f6d731394eb0f951a382 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('h1') // This selects every <h1> element | |
$('#main') // This selects an element with the ID 'main' | |
$('.open') // This selects every element with the class 'open' | |
$("[color='blue']") // This selects every element with an attribute 'color' equal to 'blue' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment