Skip to content

Instantly share code, notes, and snippets.

@jasoet
Created February 4, 2013 10:17
Show Gist options
  • Save jasoet/4706003 to your computer and use it in GitHub Desktop.
Save jasoet/4706003 to your computer and use it in GitHub Desktop.
Menambahkan Script di Chrome Dev Tool. Contoh ini meload jQuery.
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js';
document.head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment