Skip to content

Instantly share code, notes, and snippets.

@staroselskii
Created December 8, 2014 16:57
Show Gist options
  • Save staroselskii/2a7ab5021b98b56cf8d8 to your computer and use it in GitHub Desktop.
Save staroselskii/2a7ab5021b98b56cf8d8 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('.menuitem-pic').hover(function() {
picname = $(this).attr('src');
picname = picname.substring(0, picname.length - 4);
$(this).attr('src', picname + "_active.png");
},
function() {
$(this).attr('src', picname + ".png");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment