BlockUI is not submitting forms!

BlockUI is not submitting forms!

Hey!

BlockUI is not submitting forms!  Did I do something wrong?  Please help by pointing me to the right direction.

here's my simple code.

  1. <html>
  2.     <head>
  3.         <title>RQ test</title>
  4.     </head>
  5.     <body>
  6.         <form method="get" action="page2.html">
  7.             <table border="1">
  8.                 <tr>
  9.                     <td><input type="checkbox" name="1"/></td>
  10.                     <td><a href="#">1234</a></td>
  11.                 </tr>
  12.             </table>
  13.             
  14.             <input type="button" id="button1" value="Generate my forms"/>
  15.             
  16.             <div id="popup" style="display: none;">
  17.                 <input type="text" name="text"/>
  18.                 <input type="submit"/>
  19.             </div>
  20.         </form>
  21.     </body>
  22.     
  23.     <!-- Scripts Area! -->
  24.     <script src="jquery.js"></script>
  25.     <script src="blockUI.js"></script>
  26.     <script>
  27.         $(document).ready(function(){
  28.             
  29.             $('#button1').click(function() { 
  30.                 $.blockUI({ message: $('#popup') });
  31.             });
  32.             
  33.         });
  34.     </script>
  35.     
  36. </html>