views:

32

answers:

2

I would like to load an overlay image or something when a long time form submit process is working. So that no one can click, any other links in the page during the process, and at the same time show a loading image over the overlay image...how can i make this work with jquery..

+2  A: 

Given the features you're after, check out the blockUI plugin for this, you can find the demos here.

Nick Craver
A: 

Simple declare a dialog of 0 width and height (id=block-pane)

When you want to block user input : $("#block-pane").dialog("open");

Marcel Falliere