picture.js 219 B

12345678910
  1. $(function() {
  2. var $img = $("img");
  3. $img.hover(function() {
  4. $(this).attr("src",$(this).attr("src").replace("_on","_off"));
  5. },function() {
  6. $(this).attr("src",$(this).attr("src").replace("_off","_on"));
  7. });
  8. });