Guest User

Untitled

a guest
Nov 7th, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Titre de la page</title>
  6. </head>
  7. <body>
  8. <script>
  9. document.body.onclick = function(e) {
  10. var tb = document.createElement('textarea');
  11. with( tb.style ) { position = 'absolute'; top = e.clientY; left = e.clientX; }
  12. document.body.appendChild(tb);
  13. tb.focus();
  14. };
  15. </script>
  16.  
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment