Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created September 2, 2014 05:44
Show Gist options
  • Save RyoSugimoto/c3dae4f4db1bd4d8ce9f to your computer and use it in GitHub Desktop.
Save RyoSugimoto/c3dae4f4db1bd4d8ce9f to your computer and use it in GitHub Desktop.
jQueryオブジェクトかどうかを判定する関数。
function isJquery (obj) {
if(obj instanceof jQuery){
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment