Code:
<form name="return" method="post" action="a.jsp">
<input type="hidden" name="name" value="bb">
</form>
<script language="JavaScript" type="text/javascript">
document.return.submit();
</script>
The code makes an auto-submit form.
In Firefox is working, but in Internet Explorer, it doesn't make the redirect thing.
In Netbeans I receive the message "Missing name after . operator "
What is the problem?
Comment