Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <body>
  4. <link type="text/css" rel="stylesheet" href="example.css">
  5.  
  6. <div class="d1" onclick="highlight(this)">1
  7. <div class="d2" onclick="highlight(this)">2
  8. <div class="d3" onclick="highlight(this)">3
  9. </div>
  10. </div>
  11. </div>
  12.  
  13. <script>
  14. function highlight(elem) {
  15. elem.style.backgroundColor='yellow'
  16. alert(elem.className)
  17. elem.style.backgroundColor = ''
  18. }
  19. </script>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement