[jQuery] Re: How to disable all clicks till the page loads

2009-05-13 Thread lorenzo816
with just the regular jquery js file or do we need any plug-ins? On May 13, 6:54 am, Kean wrote: > You can try these. > > $().bind('click.noclick', function(){ >   return false; > > }); > > $(function(){ >   $().unbind('click.noclick'); > > }); > > On May 12, 11:56 pm, bobin wrote: > > > Any o

[jQuery] Re: How to disable all clicks till the page loads

2009-05-13 Thread Kean
You can try these. $().bind('click.noclick', function(){ return false; }); $(function(){ $().unbind('click.noclick'); }); On May 12, 11:56 pm, bobin wrote: > Any one can please tell me  How to disable all clicks till the page > loads > > Any help wil be appreciated