ひと様のサイトのコンソールで jquery を使おうとして怒られる事ありますよね。
よく見ると対象ページで jquery を使っていなかったりします。
そんな時はコンソールから直接 jquery を突っこんでしまいましょう。
var script = document.createElement('script');
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
参考:https://stackoverflow.com/questions/31912136/each-is-not-a-function