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 });
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
2 matches
Mail list logo