Guest User

Untitled

a guest
Nov 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .example-class:hover {
  6. background: red;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <div id="example-id">example text</div>
  12. <script>
  13. setTimeout(function () {
  14. document.getElementById('example-id').className = 'example-class';
  15. }, 1);
  16. </script>
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment