Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created September 1, 2012 00:18
Show Gist options
  • Save claudiosanches/3561665 to your computer and use it in GitHub Desktop.
Save claudiosanches/3561665 to your computer and use it in GitHub Desktop.
Wordpress jQuery
// Errado:
$(document).ready(function() {
// código usando $
}
// Certo:
jQuery(document).ready(function($) {
// código usando $
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment