Form submit to new tab, and redirect current window not working in Chrome / Safari Form submit to new tab, and redirect current window not working in Chrome / Safari google-chrome google-chrome

Form submit to new tab, and redirect current window not working in Chrome / Safari


This works: jsFiddle

javascript:

function testfunc() {    alert('Submit Clicked');    setTimeout(function() {        window.location.href = ('http://ct.athiel.ca');        alert('Redirect attempted');    }, 1);    jQuery('form#getaQuote').submit();    alert('Form submit attempted');}