AlanTsai
3/30/2016 - 3:25 AM

Add jquery to chrome console. From http://stackoverflow.com/questions/7474354/include-jquery-in-the-javascript-console #chrome

var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();