Guest User

Untitled

a guest
Apr 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ```
  2. <img src='img_on.jpg'> //or img_off.jpg
  3. ```
  4. ```
  5. $(".img-swap").hover(
  6. function(){this.src = this.src.replace("_off","_on");},
  7. function(){this.src = this.src.replace("_on","_off");
  8. });
  9. ```
Add Comment
Please, Sign In to add comment