Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a basic little js/jquery function, but I can't seem to get the animation work for a change to the Body's "margin-top" - I need the current value of 3em to animate down to 0em. Here's my function:

$(".notify-close").click(function () {
  $('#notify-container').css('display', 'none');
  $('body').css("margin-top", "0em");
});

One part I can't figure out is how to remove pixels (or EM in this case) - for example, here's an idea regarding adding 50 pixels to a current margin-top, with a "+=50" value, but what's the REMOVAL equivalent to this in EM? Like "-3EM" ????:

$("body").animate({
    margin-top: "+=50"
  }, 1500 );
share|improve this question

3 Answers

Did you try this?

$("body").animate({
    margin-top: "-=50em"
}, 1500 );
share|improve this answer
tried that and it doesn't work, thx – Jamison Sep 16 '11 at 15:13
$("body").animate({
    margin-top: "50px"
  }, 1500 );
share|improve this answer
Need to remove 3EM, not make the value 50px, thx – Jamison Sep 16 '11 at 15:16
up vote 0 down vote accepted

I just used this script - it's not 100% animated in regards to changing the EM value for the body's margin-top value, but its a basic fix for now:

<script>
    $(".notify-close").click(function () {
        $('#notify-container').css('display', 'none');
        $('body').css("margin-top", "0");
    });         
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.