Created
November 22, 2015 11:51
-
-
Save KCreate/28e0c76e8d48f30c328e to your computer and use it in GitHub Desktop.
Asynchronous JavaScript Alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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