[jQuery] Access a plug-in option from within the initial call?

[jQuery] Access a plug-in option from within the initial call?


Hi,
I'm wondering how to access a plug-in's options from within the
initial plug-in call. Here's an example:
$("#someDiv").somePlugIn({
optionA: true,
trigger: $(this).children('#trigger'),
callback: function(){
trigger.doSomething();
}
});
As you can see, all I'm trying to do is access optionB within the
callback function I'm specifying in the initial call but I don't know
how to access it. Any ideas?
Thanks...