I am using the SimpleModal
plug-in in jQuery.
When I use the action event, the modal dialog appears slowly.
Is there any way to increase the speed of the modal dialog, so it appears quicker?
I am using the SimpleModal
plug-in in jQuery.
When I use the action event, the modal dialog appears slowly.
Is there any way to increase the speed of the modal dialog, so it appears quicker?
Try the onOpen callback described at the modal homepage:
data.modal({onOpen: function (dialog) {
dialog.overlay.fadeIn('slow', function () {
dialog.container.slideDown('slow', function () {
dialog.data.fadeIn('slow');
});
});
}});
Try using different values for the fadeIn function instead of slow if this changes something.