Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created December 19, 2014 15:37
Show Gist options
  • Save bran921007/2143a427cebf55d168cf to your computer and use it in GitHub Desktop.
Save bran921007/2143a427cebf55d168cf to your computer and use it in GitHub Desktop.
codigo ejecutar jquery en el consola de chrome
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment