Include jQuery in the JavaScript Console

var jq = document.createElement('script');
jq.src = "https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);

// ... give time for script to load, then type (or see below for non wait option)
jQuery.noConflict();