Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.onload=function(){
  2.     var h1 = document.getElementById('id_h1');
  3.     h1.style.background = 'gray';
  4.  
  5.     var p = document.getElementsByTagName('p');
  6.     p[0].style.background = 'blue';
  7.     p[1].style.background = 'pink';
  8.     p[2].style.background = 'red';
  9.     p[3].style.background = 'yellow';
  10.  
  11.     window.onclick=function(){
  12.         var h11 = document.getElementById('id_h1');
  13.         var link = h11.getElementsByTagName('a');
  14.         alert(link[0].href);
  15.     }  
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement