binding the dialog resizeStop event /after/ dialog creation
Using jQueryUI 1.7.2 index.html, the Welcome to jQuery page, and
FireFox 3.0.13 under Linux , refer to the link that opens the dialog
// Dialog Link
$('#dialog_link').click(function(){
$('#dialog').dialog('open');
return false;
});
Attempting to bind an event handler to the resizeStop event /after/
the dialog has been created has no effect. e.g.
// Dialog Link
$('#dialog_link').click(function(){
$('#dialog').dialog('open');
$('#dialog').bind( 'resizeStop', function(){alert
("resizeStop");} );
return false;
});
Binding the event at the time the dialog is created works like a
champ. Is this a bug or am I missing something obvious?