Skip to content

Instantly share code, notes, and snippets.

@vamdt
Created August 4, 2017 03:53
Show Gist options
  • Select an option

  • Save vamdt/334f89adaecae36ae4452cf3788ea1a5 to your computer and use it in GitHub Desktop.

Select an option

Save vamdt/334f89adaecae36ae4452cf3788ea1a5 to your computer and use it in GitHub Desktop.
ajax async set false to make window open works
$.ajax({
url: "/",
async: false,
dataType: "json",
success: function() {
window.open("http://google.com", "_blank");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment