Guest User

Untitled

a guest
Jan 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function Wechsel (bildurl) {
  2. document.getElementById("foto").src = bildurl;
  3. document.getElementById("aktiveUrl").href = bildurl;
  4. document.getElementById("aktiveUrlDiv").setAttribute("value",bildurl)
  5. var arr = document.getElementsByClassName("nav_img");
  6. for (x = 0; x < arr.length; x++)
  7. {
  8. if (arr[x].firstChild.firstChild.href.indexOf(bildurl) != -1)
  9. {
  10. arr[foundIndex].firstChild.id = "nav_img_active";
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment