Skip to content

Instantly share code, notes, and snippets.

@KCreate
Created November 22, 2015 11:51
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 KCreate/28e0c76e8d48f30c328e to your computer and use it in GitHub Desktop.
Save KCreate/28e0c76e8d48f30c328e to your computer and use it in GitHub Desktop.
Asynchronous JavaScript Alert
function asyncAlert(m){
setTimeout(function(){
alert(m);
},1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment