Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <body>
  2. <button onclick="highlight('Invisible-Button')">Remove the invisibility</button>
  3. <button id="Invisible-Button">Invisible Button</button>
  4. <p class="invisible-text" id="Numero">0</p>
  5. <script>
  6. function highlight('Invisible-Button') {
  7. document.getElementById('Invisible-Button').style.background="color blue";
  8. }
  9. </script>
  10. <style>
  11. #Invisible-Button {
  12. color: blue; background-color: red; border-color: black; cursor: default;
  13. }
  14. </style>
  15. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement