-- HikaShop version -- : 2.3.4
-- Joomla version -- : 2.5.27
-- PHP version -- : 5.3.29
-- Browser(s) name and version -- : N/A
-- Error-message(debug-mod must be tuned on) -- : Uncaught SyntaxError: Unexpected token
Please wait while you are redirected to PayPal
If you are not redirected after 10 seconds, please click on the button below.
But nothing happens. Even after fixing the obvious javascript error.
FYI, Internet Explorer Conditional Comments go
around the script declaration. Not inside.
msdn.microsoft.com/en-au/library/ms537512(v=vs.85).aspx
<script type="text/javascript">
<!--
document.getElementById('hikashop_paypal_form').submit();
//-->
<!--[if IE]>
document.getElementById('hikashop_paypal_button').style.display = 'none';
document.getElementById('hikashop_paypal_button_message').innerHTML = '';
<![endif]-->
</script>
Should be:
<!--[if IE]>
<script type="text/javascript">
document.getElementById('hikashop_paypal_button').style.display = 'none';
document.getElementById('hikashop_paypal_button_message').innerHTML = '';
</script>
<![endif]-->
Who is writing this stuff ...?