Advertisement
StefiIOE

promena na boja po stiskanje na kopche

Feb 7th, 2020
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <h1>JavaScript example </h1>
  7. <p id ="demo">
  8.   JavaScript can change the style of an HTML element.
  9. </p>
  10. <script>
  11.   function myFunction() {
  12.     x=document.getElementById("demo")
  13.     x.style.color="#ff0000";
  14.   }
  15.  
  16. </script>
  17. <button type="button" onclick="myFunction()">Click Me!</button>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement