Advertisement
ProjcheskiF1

[ip]Lab6,Zadaca2-JavaScript

Dec 14th, 2016
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Zadaca 2</title>
  6. </head>
  7. <body>
  8. <h1 class="someclass" id="someid">Hello there</h1>
  9. <button onclick="values()">Values</button>
  10. <p id="showval"></p>
  11. <script>
  12.     function values(){
  13.     var x = document.getElementsByTagName("h1")[0].getAttribute("id");
  14.     document.getElementById("showval").innerHTML=x;}
  15. </script>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement