I wanna move a div block to the top, so I coded like this:
CSS part:
.movingPart{
margin-top:80px;
}
jQuery part:
$(document).ready(function() {
$('#btn').click(function() {
$('.movingPart').animate({
"margin-top":'0px'
});
});
});
it works perfectly in chrome, but doesn't move a little in firefox, why???
thanks in advance