Skip to content

Instantly share code, notes, and snippets.

View DarkSector's full-sized avatar
🏗️
Building stuff

Pronoy Chopra DarkSector

🏗️
Building stuff
View GitHub Profile
@DarkSector
DarkSector / jqueryinconsole.js
Created August 20, 2015 04:33 — forked from zxcvbnm4709/gist:2656197
include jQuery in Chrome Console
var script = document.createElement("script");
script.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
document.body.appendChild(script);
}, false);
document.body.appendChild(script);