Created
September 2, 2014 05:44
-
-
Save RyoSugimoto/c3dae4f4db1bd4d8ce9f to your computer and use it in GitHub Desktop.
jQueryオブジェクトかどうかを判定する関数。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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