Есть ли способ в jQuery создать и отправить форму на лету.
Что-то вроде ниже.
<html>
    <head>
    <title> Title Text Goes Here </title>
    <script src="http://code.jquery.com/jquery-1.7.js"></script>
    <script>
        $(document).ready(function(){alert('hi')});
        $('<form/>').attr('action','form2.html').submit();
    </script>
    </head>
    <body>
        Content Area
    </body>
    </html>
Предполагается ли это работать или есть другой способ сделать это?