Change th return of Widgets in UI.
I know this idea is a bit far out, but I belive the syntax for working with widgets in Jquery UI is 'strange'..
$("#id").dialog({autoOpen:false});
to open this dialog now i have to do the call once more...
$("#id").dialog('open');
i belive i would be better if we could do something like this..
var diag = $("#id").dialog({autoOpen:false});
diag.open();
What do you guys think...