I downloaded just today...the latest available on the site...V2 I tried copying and pasting the lines from the site after adding the javascript reference on to my webpage.. Usage is very simple; to block user activity for the page:
$.blockUI(); Blocking with a custom message: $.blockUI({ message: '<h1><img src="busy.gif" /> Just a moment...</ h1>' }); Blocking with custom style: $.blockUI({ css: { backgroundColor: '#f00', color: '#fff'} }); To unblock the page: $.unblockUI(); If you want to use the default settings and have the UI blocked for all ajax requests, it's as easy as this: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); But,no matter what I add,it shows only "Please wait....." It doesn't display the text I add... What should I do to make it work? Please help me out...Thanks.. On Nov 16, 8:50 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > I am trying to use the Jquery BLOCKUI plugin....but with no success... > > As per the examples on that page,I tried passing my custom > > message,etc....it doesn't work. > > > No matter what I try,it only displays the default "Please Wait..." > > message :-( > > What version of the plugin are you using? What does your code look > like? Can you post a link that shows the problem?