Advertisement
Felanpro

Button Function

Jan 19th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5.     <head>
  6.    
  7.     <title>Javascript testing</title>
  8.    
  9.     </head>
  10.    
  11.     <body>
  12.    
  13.     <p id="demo">This paragraph will change after clicking that button below!</p>
  14.    
  15.     <button type="button" onclick="randomFunction()">Click!</button>
  16.    
  17.     <script>
  18.    
  19.     function randomFunction() {
  20.         document.getElementById("demo").innerHTML = "Paragraph changed!";
  21.        
  22.     }
  23.     </script>
  24.    
  25.     </body>
  26.    
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement