views:

54

answers:

1

I use jquery blockUI plugin (v2) and call $.blockUI when user submits a form. Web page smoothly fades out and new page appears. That's ok. But when user presses "back" button in opera/fire fox he observes fade out page with hourglass mouse cursor that is completely blocked.

Chrome/IE visualize page ok.

What would you suggest?

Thank you in advance!

+1  A: 

Finally I found workaround.

$(window).unload(function() {
                $.unblockUI();                
})
Andrew Florko