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?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---