So i have a form, and onsubmit=\"return reg_check(this)\"
where reg_check()
is a javascript function in the header which is supposed to check the f
I've seen problems in IE where I've had to do the following:
window.location.assign(url);
Specifically within a jQuery AJAX success handler. Can't really speculate to why other than for me, it worked.
Actually I did
window.location.replace(url)
Which replaces the current page in the history. Nice trick that!