Image Hover Effect - kary4/divituts GitHub Wiki
To catch certain image module please add an additional css class to the image module, for ex.: hover-img. Then Open up footer.php file and right after
<?php wp_footer(); ?>
add this code
<script>
jQuery( document ).ready(function() {
jQuery('.hover-img img').each(function(){
var imgSrc = jQuery(this).attr('src');
jQuery(this).hover(
function(){
var imgAlt = jQuery(this).attr('alt');
jQuery(this).attr('src', imgAlt);
},
function(){
jQuery(this).attr('src', imgSrc);
}
);
});
});
</script>