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.
- <html>
- <head>
- <title>RQ test</title>
- </head>
- <body>
- <form method="get" action="page2.html">
- <table border="1">
- <tr>
- <td><input type="checkbox" name="1"/></td>
- <td><a href="#">1234</a></td>
- </tr>
- </table>
-
- <input type="button" id="button1" value="Generate my forms"/>
-
- <div id="popup" style="display: none;">
- <input type="text" name="text"/>
- <input type="submit"/>
- </div>
- </form>
- </body>
-
- <!-- Scripts Area! -->
- <script src="jquery.js"></script>
- <script src="blockUI.js"></script>
- <script>
- $(document).ready(function(){
-
- $('#button1').click(function() {
- $.blockUI({ message: $('#popup') });
- });
-
- });
- </script>
-
- </html>