try this, it works for me,
$('#myButton').click(function () {
var redirectWindow = window.open('http://google.com', '_blank');
$.ajax({
type: 'POST',
url: '/echo/json/',
success: function (data) {
redirectWindow.location;
}
});
});
Is fiddle for this http://jsfiddle.net/safeeronline/70kdacL4/1/