Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function() {
- document.getElementById('display-image').onclick = function() {
- var btnClicked = this;
- if(btnClicked.src === 'images/01.gif') {
- btnClicked.src = 'images/02.gif;
- else
- btnClicked.src = 'images/01.gif';
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment