Guest User

Untitled

a guest
Sep 3rd, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. (function() {
  2. document.getElementById('display-image').onclick = function() {
  3. var btnClicked = this;
  4.  
  5. if(btnClicked.src === 'images/01.gif') {
  6. btnClicked.src = 'images/02.gif;
  7. else
  8. btnClicked.src = 'images/01.gif';
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment