Advertisement
Guest User

Juhin sivun alku

a guest
Jul 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <title>Juhin sovellus</title>
  5.   <link rel="stylesheet" src="styles.css" type="text/css">
  6. </head>
  7. <body>
  8.   <div id="Container">
  9.     <input type="text"/>
  10.     <button id="Button1" type="button"> Button 1</button>
  11.     <button id="Button2" type="button"> Button 2</button>
  12.     <button id="Button3" type="button"> Button 3</button>
  13.   </div>
  14.  
  15.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  16.   <script type="text/javascript">
  17.     // Koodaa tähän sun javascripti
  18.      $( document ).ready(function() {
  19.         $( "#Button1" ).click(function( event ) {
  20.             alert( "Button 1 was clicked." );
  21.             event.preventDefault();
  22.         });
  23.         $( "#Button2" ).click(function( event ) {
  24.             alert( "Button 2 was clicked." );
  25.             event.preventDefault();
  26.         });
  27.         $( "#Button3" ).click(function( event ) {
  28.             alert( "Button 3 was clicked." );
  29.             event.preventDefault();
  30.         });
  31.     });
  32.   </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement