That would be a problem with IE not with BlockUI as IE doesn't render
tables until it hits the end of the table html

wrapping the $.blockUI()  call inside $(document).ready() should solve
the issue, as it makes no sense to block the page until the DOM is
ready


On Mar 3, 11:26 am, lacroix1547 <simon.lacr...@gmail.com> wrote:
> <html>
> <script type="text/javascript" src="jquery.js"></script>
> <script type="text/javascript" src="jquery.blockui.js"></script>
> <body>
> Remove the table and it wont crash.
> <table >
>   <tr>
>     <td>
>       <script>
>           $.blockUI();
>           $.unblockUI();
>       </script>
>     </td>
>   </tr>
> </table>
> </body>
> </html>

Reply via email to