I'm trying to create a jquery plugin
initially the plugin is used like
$('element').plugin;
Now, i want to extend it further to call specific operations like
$('element').plugin.create;
or
$('element').plugin.delete;
any way of doing this?