Is there a way to \"unbind\" a jQuery plugin from a jquery selector?
You can unbind the plugin name from the jQuery prototype object with delete:
delete $.fn.pluginName;
This doesn't affect already initialized plugin instances though.