Is there a reason most plug-ins do not allow options to be accessed after setting them?
For example, why can't plugins do this?
$('#myDivTag').somePlugIn(options);
var options = $('#myDivTag').somePlugin().getOptions();
The reason I ask is wanting to use "multiple instances" of plugins. Like a crop control used on two different photos where each instance must maintain options (state) specific to each img tag.