Skip to content

Instantly share code, notes, and snippets.

@vamdt
Created August 4, 2017 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamdt/334f89adaecae36ae4452cf3788ea1a5 to your computer and use it in GitHub Desktop.
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