$(function() { $('.imghover').mouseenter(function() { this.dataset.src = this.getAttribute('src'); this.src = this.getAttribute('x-src'); }).mouseleave(function() { this.src = this.dataset.src; }) });