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>
これは機能するはずですか、それともこれを行う別の方法がありますか?