Hi,
I'm working on a simple script to pass the value " ...php?answer=1" if java is enabled. I've got this far ...
<script language="text/javascript">
document.form.answer.value=1;
</script>
</head>
<body>
<form name="form" action="enabled_catch.php" method="get">
<input type="hidden" name="answer">
<input type="submit" value="click me">
</form>
... but the script does not appear to ba assigning answer.value="1" - I'm not sure why. Can you help