Guest User

Untitled

a guest
Jun 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. //getElementById().......is more useable
  2. //getElementByClassName()....not work at IE 8
  3. //getElementByTagName()....not work at IE 8
  4.  
  5.  
  6. <<<<find object by id>>>>
  7.  
  8. //document.images
  9. //document.forms
  10. //document.title
  11. var mydiv = document.getElementById("show");
  12. mydiv.innerHtml = document.forms[0].value
  13. <<<<<<<querySelector>>>>>
  14. var mydiv = document.querySelector("img");
  15. mydiv.title = "mytitle"
Add Comment
Please, Sign In to add comment