$(function(){ $("img[hover='offset']").hover(function(){ var _offset = $(this).offset(); $(this).offset({left : _offset.left + 1 , top : _offset.top + 1}); },function(){ var _offset = $(this).offset(); $(this).offset({left : _offset.left - 1 , top : _offset.top - 1}); }); });