Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery ajax loading overlay plugin [closed]

Tags:

jquery

Does anybody know of a nice plugin for ajax loading overlay preventing any other action in the browser till the data gets loaded.

like image 947
coool Avatar asked Aug 11 '09 19:08

coool


3 Answers

loadmask plugin

like image 50
serg Avatar answered Nov 14 '22 06:11

serg


Try blockUI: http://malsup.com/jquery/block/

This doesn't have any connection to AJAX inherently, but it's something you can invoke when doing your own AJAX calls separately.

like image 44
VoteyDisciple Avatar answered Nov 14 '22 07:11

VoteyDisciple


i made one more tailored to this sort of thing:

http://plugins.jquery.com/project/loading

All you need to do is:

$.loading({onAjax:true,mask:true});

That'll wire it up to ajax events automatically. There are a great many more options and features though. You can use text, arbitrary elements, apply "pulse" effects and more. Check out the demo:

http://jquery-values.googlecode.com/svn/other/loading/jquery.loading.htm

like image 6
Nathan Bubna Avatar answered Nov 14 '22 06:11

Nathan Bubna