Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Content</title>
  6. </head>
  7. <body>
  8. <div>
  9. <div id="atom1" contenteditable="true">
  10. atom
  11. </div>
  12. </div>
  13. <script>
  14. var atom = document.getElementById("atom1")
  15. atom.addEventListener('focus', function(event) {
  16. console.log('focus' + event.target.id)
  17. })
  18. atom.addEventListener('blur', function(event) {
  19. console.log('blur' + event.target.id)
  20. })
  21. atom.addEventListener('input', function(event) {
  22. //outputs in all browsers except IE11
  23. console.log('input' + event.target.id)
  24. })
  25. </script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement