Чи є в 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>
Це має працювати або існує інший спосіб це зробити?