destroying widgets question:

destroying widgets question:

Hey guys, I'm building a widget/plugin using the UI Widget technique.
What should I do here:
_init: function() {
if (this.element[0].tagName.toLowerCase() != "select") {
return false; // destroy?
}
...
}
I only want to allow creation on select tags; silent ignore of non
selects is OK. What is the suggested technique of terminating the
_init and its parent object? is there a different way?
Toolman
--