I'm working on the following. It basically passes ?answer=1 if js is enabled. It works until I add the onload argument (as I want this to happen without a user trigger). However adding onload appears to stop (the otherwise working) getElementById argument. Why is this happening?
<script type="text/javascript">
window.onload = function() {
document.getElementById('answer').value = '1';
}
</script>
</head>
<body onload="document.forms[0].submit();">
<form name="form" action="enabled_catch.php" method="get">
<input type="hidden" name="answer">
</form>
thanks
window.onloadrefers to the same thing as theonloadattribute of the<body>tag. – Pointy Aug 28 '10 at 15:36getElementById()but your input element has no "id" attribute - that works in IE because IE is broken, but it won't work in proper browsers. – Pointy Aug 28 '10 at 15:36onloadhandlers - you assign the first handler in your<script>block, and then when the browser sees your<body>tag it reassigns the handler to that code. You can't have a single attribute pointing at two different handlers. – Pointy Aug 28 '10 at 16:09