Questions tagged [jquery-blockui]

The jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX by blocking user interaction and showing a user-defined wait indication.

The jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX, without locking the browser. When activated, it will prevent user activity with the page (or part of the page) until it is deactivated. BlockUI adds elements to the DOM to give it both the appearance and behavior of blocking user interaction.

166 questions
3
votes
2 answers

javascript blockUI is not working in firefox when submit the form

I add jquery.blockUI.js to my html page and I used it in the script. My HTML page is:
3
votes
1 answer

Using CSS3 Pie with jQuery BlockUI

I am using CSS3 Pie for doing cross browser border-radius and box-shadows. This works really great. But when used together with the jQuery blockUI plugin (using modal dialogs), CSS3 Pie functionality does not apply to that dialog element. This is…
return1.at
  • 2,992
  • 3
  • 23
  • 26
3
votes
4 answers

How to unblock a blocked page with jquery-blockui?

I start to using jQuery BlockUI Plugin to block user activity for the page until complete a button process on C#/ASP.NET side. So I wrote this;
Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
3
votes
1 answer

Block everything except one div

I need to use blockUI with ajax, but it doesn't work for me: $('#myDiv').block({ message: 'Message Resource' }) I want to ensure that my sidebar div is not locked when scroll over the div that I am blocking. I intend to do some default…
BragaGhost
  • 75
  • 8
3
votes
1 answer

BlockUI - Updating the Message while Block is Active

I am using BlockUI to help prevent interaction on my pages during ajax requests, with this simple command. $(document) .ajaxStart($.blockUI) .ajaxStop($.unblockUI); This works most of the time. But there are situations, such as during…
Ciel
  • 4,290
  • 8
  • 51
  • 110
3
votes
2 answers

Using a cookie and jQuery BlockUI

I want to display a pop-up on home page, but only once. If someone goes to other pages and then comes back to home page, I don't want to display it again. Here's the code: