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.

'thisAnchorMargin is an float. why doesn't this work? if i just put a numerical value in there and don't concatenate the % (e.g. top: 50%) it works. is this not a valid unit type to animate in jquery?

$('.markerContainer').stop().animate({
    top: thisAnchorMargin + '%'
    }, {
    duration:scrollSpeedGlobal,
    queue:false
    });
share|improve this question
What's the behavior when it "doesn't work"? Are there any errors in the javascript error console? – Razor Storm Aug 2 '11 at 22:00

1 Answer

up vote 1 down vote accepted

I tried it with several different floats (concatenating the '%') and it works just fine, at least in Chrome/Mac. http://jsfiddle.net/9d6ck/

share|improve this answer
1  
Damn, you beat me to it >< jsfiddle.net/sXGBX – Razor Storm Aug 2 '11 at 21:55
1  
Also works with a variable: jsfiddle.net/9d6ck/1 – joseph Aug 2 '11 at 21:56
1  
Methinks other evil things might be at play. – karim79 Aug 2 '11 at 21:57
turns out that it was just the fact that the values i was getting were just soooo miniscule that there wasn't any visible animation going on... thanks for all the replies! – myklee Aug 3 '11 at 1:02

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.