for the plugins that doesn't use fn namespace (for example pnotify), this works:
if($.pluginname) { alert("plugin loaded");} else { alert("plugin not loaded");}
This doesn't work:
if($.fn.pluginname)
for the plugins that doesn't use fn namespace (for example pnotify), this works:
if($.pluginname) { alert("plugin loaded");} else { alert("plugin not loaded");}
This doesn't work:
if($.fn.pluginname)