Hello, newbie here  . I am trying to get a form to work in IE that works right now 100% fine in Firefox.
I am actually experiencing a similar problem as this guy http://www.webmaster-talk.com/php-fo...refox-but.html (I can see it was not resolved).
Here is what i got:
BETWEEN HEAD TAGS:
Code:
<script language="javascript">
function whbut(pay)
{
document.frm_order.action='billing_circus.php';
document.frm_order.submit();
}
</script>
THIS IS WHAT I HAVE ABOVE WHERE THE FORM STARTS:
PHP Code:
<?php
$pay_method=$_POST['pay_method'];
?>
<form name="form_order" action="" method="post" onsubmit="javascript:whbut('<?php echo $pay_method?>');">
THIS IS WHAT I HAVE WHERE THE FORM ENDS:
HTML Code:
<input type="image" src="images/confirm.gif" alt="Continue" width="81" height="23" border="0" value="deluxe_pro" name="continue" />
Why would this not be working in IE? I tried Safari works fine, I tried Firefox works fine. I tried IE 6 did NOT work, and I tried IE 7 did NOT work.
Any help is greatly appreciated. Thanks.
-Fretta
|