Guest User

Untitled

a guest
Jul 15th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. function setup () {
  2. var images = document.getElementById("mycarousel");
  3. images = images.getElementsByTagName("img");
  4.  
  5. for (var i = 0; i< images.length; i++) {
  6. images[i].onclick = imgReplace (images[i]);
  7. }
  8.  
  9. }
  10.  
  11. images[i].onclick = function() {imgReplace(images[i]);};
  12.  
  13. images[i].onclick = (function(i) { return function() { imgReplace(images[i]); }; })(i);
  14.  
  15. images[i].onclick = function() { imgReplace (images[i]); };
  16.  
  17. images[i].click = function(){ imgReplace( images[i] ) }
  18.  
  19. for (var i = 0; i< images.length; i++) {
  20. var imageIndex = i;
  21. images[i].onclick = function(){ imgReplace (images[imageIndex]); }
  22. }
  23.  
  24. images[i].onclick = function() {imgReplace(images[i]);}
Add Comment
Please, Sign In to add comment