Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm setting top or bottom and left or right values to a few elements. When i'm trying to access this values with Firefox (16.0.2), i get a wrong value for top (a specific value instead of auto)

CSS

div {
    bottom:200px;
    left:0px;
    top:auto;
    right:auto;
}

JS

$(function(){
    var top = $('div').css('top');
    alert(top);
});​

You can try it here: http://jsfiddle.net/UEyxD/2/ (works well in Chrome/Safari)

Any ideas how to prevent this? I want to get

share|improve this question
What do you want to get? – Kyle Sevenoaks Nov 19 '12 at 14:41
2  
The only way to get the original value i Firefox is to use inline CSS on the element instead, otherwise the calculated value will be returned. – everse Nov 19 '12 at 14:51

3 Answers

up vote 1 down vote accepted

This is down to the browser and how it interprets the styles, it is somewhat out of your control. However, with particular CSS and jQuery workarounds you should be able to get around it. For instance, if you do not need to the item to be positioned absolutely then you could remove this, or change it to position:static;

Have a look at this question.

As to why Chrome and IE return different values: .css() provides a unified gateway to the browsers' computed style functions, but it doesn't unify the way the browsers actually compute the style. It's not uncommon for browsers to decide such edge cases differently.

share|improve this answer

Just remove the position style and you will get auto instead of computed value.

div {
    top: auto;
    bottom:20px;    
    right:20px;
    left:0px;
}

you can test it here.

share|improve this answer
2  
Maybe he needs the div to be positioned! – Ben Carey Nov 19 '12 at 15:14

You Can Get integer Value of top when you set 'auto' with below code:

$(function(){
    var top = $('div').offset().top;
    alert(top);
});​
  • offset Return Position Value When you Set To Auto
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.