Last active
April 29, 2016 17:15
-
-
Save LennonSantos/d4cd00f82050304c5c6dc63cb288b93c 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
// Seleção com javascript puro | |
var el = document.querySelector(".myclass"); | |
// Seleção com jquery | |
var el = $(".myclass"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment