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开发者_StackOverflow社区" 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!
Finally I found workaround.
$(window).unload(function() {
$.unblockUI();
})
精彩评论