<div style="left: 100%"></div>

parseInt($("div").css("left"), 10);

When I try to get value of left, some browsers give result in pixels, some in %.

Here is an example http://jsfiddle.net/WTt4s/1/

Google Chrome gives percent value, IE9 gives pixels instead.

How do I get the same value in all browsers (px or %)?

link|improve this question

2  
have you checked the actual text value of top? Is it still in percent or have the browsers converted it to pixels? If it is still in percent, what happens if you strip the '%' character before doing the parseInt? -- $("div").css("top").replace('%','') – Spudley May 9 '11 at 14:30
2  
What's the output of alert($("div").css("top")) in place of the parseInt? – Jonathon May 9 '11 at 14:30
it does not seem like a parseInt problem but browser related behavior – Amine May 9 '11 at 14:32
Please provide a test case, preferably using jsFiddle. – thirtydot May 9 '11 at 14:32
@Spudley you are true, browser convers value to pixels. I get 100px instead of 100% without parseInt. – Brain May 9 '11 at 14:35
show 1 more comment
feedback

2 Answers

up vote 4 down vote accepted

Try this one parseInt($("div")[0].style.top, 10)

link|improve this answer
in IE 8 I've got "90" with your jsFiddle - jsfiddle.net/WTt4s/2 – DanielB May 9 '11 at 14:57
feedback

Try to use .offset().top or .position().top instead

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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