Hi there
I've got an online transaction going on my website in development; when I put myself in the customers shoes and put a transaction through on my Windows machine (infact any windows machine) the transaction works fine and it ends up displaying the correct page.
However, when I try it on a Mac it hangs on the validation page of the transaction; in the validation page I have a set of conditions that it has to pass - if it fails it directs to a particular failure page, if it succeeds, it directs to a particluar success page. When I view the source on the validation page that it is hanging on I see this:
<form name="frm_pass_it_on_failed" action="http://myurl.com/t_failure.asp" method="POST">
</form>
<script>
document.frm_pass_it_on_failed.submit();
</script>
I'm not worried about it failing but what I don't understand is why it doesn't submit to
http://myurl.com/t_failure.asp - does anyone know why this would be a problem with a Mac and if so, how can I rectify it.
Many thanks
Adam