Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="fr">
- <head>
- <meta charset="utf-8">
- <title>Titre de la page</title>
- </head>
- <body>
- <script>
- document.body.onclick = function(e) {
- var tb = document.createElement('textarea');
- with( tb.style ) { position = 'absolute'; top = e.clientY; left = e.clientX; }
- document.body.appendChild(tb);
- tb.focus();
- };
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment