Advertisement
Guest User

Untitled

a guest
May 27th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. var Prompt = function(prompt){
  2. var box = document.createElement('textarea');
  3. box.placeholder = prompt;
  4. box.style.width = "30vw";
  5. box.style.height = "60vh";
  6. box.style.marginTop = "20vh";
  7. box.style.marginLeft = "35vw";
  8. box.style.position = "fixed";
  9. box.style.left = "0";
  10. box.style.top = "0";
  11. box.style.zIndex = "9999999";
  12. box.oninput = function(){
  13. box.parentNode.removeChild(box);
  14. changed = true;
  15. };
  16. document.body.appendChild(box);
  17. return box;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement