Hi all,
I have following situation:
There are pages containing input field where in user enters value. Now I have a requirement to block UI untill the document is ready and every input field is rendered. I have found that I can use blockUI plugin for this :
http://jquery.malsup.com/block/
I have also found few good examples in :
http://www.malsup.com/jquery/block/#demos
Now, my problem is how do I call $.blockUI() on pre-ready stage and call $.unblockUI(); on .ready(). I would want my UI to be locked untill the
doc is ready. I can put call to $.unblockUI(); in .ready() but where do I put $.blockUI().
Please help me in solving this issue.
Thanks in advance.