Skip to content

Instantly share code, notes, and snippets.

@nsisodiya
Created June 6, 2014 06:52
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 nsisodiya/25454fb31dcd3f58ec6b to your computer and use it in GitHub Desktop.
Save nsisodiya/25454fb31dcd3f58ec6b to your computer and use it in GitHub Desktop.
alert
var alert = function (str) {
var st = document.createTextNode(str);
var p = document.createElement('p');
p.appendChild(st);
document.querySelector('body').appendChild(p);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment