ブラウザのウィンドウ幅を調べて、非表示フィールドに値として入れることはできますか?
前もって感謝します。
更新: jQuery に精通している必要があることはわかっています。これがコードの使用方法ですか?
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js" >/script>
<script type="text/javascript">
var MyWindowwidth = $(window).width();
$("#thew").val(MyWindowwidth);
</script>
</head>
<body>
<form id="form1" name="form1" method="get" action="">
<input type="hidden" id="thew" name="thew" value="">
<input type="submit" name="subm" id="subm" value="Submit" />
</form>
</body>
</html>