Is it possible to test whether a jQuery object has a particular method? I\'ve been looking, but so far without success. Thanks!
try
if ($.fn.method) { $('a').method(...); }
or
if ($.method) { $.method(...); }