Skip to content

Instantly share code, notes, and snippets.

View philipstanislaus's full-sized avatar

philipstanislaus

View GitHub Profile
@philipstanislaus
philipstanislaus / includeJQuery.js
Created January 29, 2016 08:38
Include jQuery in any page from console
var jq = document.createElement('script');
jq.src = "http://code.jquery.com/jquery-2.2.0.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();