jQueryオブジェクトかどうかを判定する関数。
function isJquery (obj) { if(obj instanceof jQuery){ return true; } else { return false; } }