Here is my jQuery
$('#samsungShine').mouseover(function () {
$('#samsungShineImage').animate({
"margin-left": "304px"
}, 700);
}).mouseout(function () {
$('#samsungShineImage').css("margin-left", "-304px");
});
When I hover over the mouse, it works fine, when I click, it does not reset, it reproduces the hint ... here is the scenario of the problem, so you can see what I mean:
http://jsfiddle.net/2tujd/
source
share