Is it possible to test whether a jQuery object has a particular method? I\'ve been looking, but so far without success. Thanks!
You should be able to look for undefined
if( typeof jQuery("*").foo === "undefined" ){ alert("I am not here!"); }