piffy

Esempio DOM

Sep 14th, 2014 (edited)
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7. <div id='inserisci'>
  8.     <p> Motori di ricerca:
  9.            <a href="www.google.com">Google</a>,
  10.            <a href="www.duckduckgo.com>Duck Duck Go</a>,
  11.            <a href="www.bing.com">Bing</a>
  12.    </p>
  13. </div>
  14. <script>
  15.     var links = document.getElementsByTagName("a");
  16.     links[0].parentNode.style.color="red";
  17.     links[0].setAttribute('disabled',true);
  18.     links[0].setAttribute('href','www.fakegoogle.com');
  19.     var x = document.createElement('hr');
  20.     document.getElementById('inserisci').appendChild(x);
  21. </script>
  22. </body>
  23. </html>
Add Comment
Please, Sign In to add comment