Link bergoyang

by itzmeamar

HTML

<a href="http://nevermore-404.blogspot.com/">Nevermore 404</a>

JavaScript

$(document).ready(function () {
    $('a').hover(function () {
        $(this).animate({
            marginLeft: '10px'
        }, 400);
    }, function () {
        $(this).animate({
            marginLeft: 0
        }, 400);
    });
});