Advertisement
Guest User

elke-jquery

a guest
Dec 5th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.74 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="nl">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title></title>
  6.     <style>
  7.         .blue{
  8.             color: blue;
  9.         }
  10.     </style>
  11. </head>
  12. <body>
  13.     <button>Klik mij 1</button>
  14.     <button>Klik mij 2</button>
  15.     <button>Klik mij 3</button>
  16.  
  17.     <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  18.     <script>window.jQuery || document.write('<script src="js/jquery-3.1.1.min.js"><\/script>')</script>
  19.  
  20.     <script>
  21.         $(document).ready(function(){
  22.             var $button = $('button');
  23.             $button.click(function(){
  24.                 console.log($(this).text());
  25.             });
  26.             $button.mouseover(function(){
  27.                 $(this).addClass('blue');
  28.             });
  29.             $button.mouseout(function(){
  30.                 $(this).removeClass('blue');
  31.             });
  32.         });
  33.     </script>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement