Skip to content

Instantly share code, notes, and snippets.

View takahiro47's full-sized avatar

Takahiro Tsuchiya takahiro47

  • CPSF, Tokuda Lab, Environment and Information Studies, Keio University SFC.
  • Tokyo, Japan
View GitHub Profile
@takahiro47
takahiro47 / copy-into-browser.js
Created August 11, 2016 04:03 — forked from techieshark/copy-into-browser.js
jquery-and-lodash-in-console
// For quickly trying things out in the browser, jQuery and Lo-Dash (like Underscore.js) are great.
// Read the code below (never copy & paste code you don't trust),
// then you can copy & paste it into the browser console to load jQuery & lodash.
(function () {
var jq = document.createElement('script');
jq.src = 'https://code.jquery.com/jquery-2.1.4.js';