Hi all,
I'm getting confused by a problem. Everything works fine in Firefox, but in IE I can't get a form to submit correctly with the enter key.
I have this function
function enter()
{
if (step == 7)
{
return true;
}
else
{
next();
return false;
}
}
and this line of code
<form id="form" name="form" method="post" action="upload.php" onsubmit="return enter();">
But enter() never seems to load until you get to a real submit button. I've put the entire code here -
http://www.unics.co.uk/onsubmit/Does anyone know what might be the issue?