[jQuery] Re: jQuery Ajax BlockUI Database

2009-11-24 Thread Mike Alsup
You can do this with blockUI if what you're planning to display is reasonably succinct. When you have the database results in your ajax callback, assuming it is HTML, you can do something like this: $.get(someUrl, function(data) { var html = '' + data + 'OK'; $.blockUI({ message: html });

[jQuery] Re: jQuery Ajax BlockUI Database

2009-11-23 Thread MorningZ
I'm not sure why you would use BlockUI for this purpose... seems more like a tooltip plugin is needed that can handle HTML On Nov 23, 3:10 pm, Troy Sartain wrote: > While searching around I have seen plenty of examples where people > query a database and use BlockUI to put up a wait message. Whe