How do I check if browser supports position:fixed using jQuery. I assume I have to use $.support I think, but how?

Thank you for your time.

link|improve this question

If you tell us why you need this, we may be able to give you a workaround for whatever you're doing. – Sasha Chedygov Jun 10 '09 at 5:53
I want to detect if the browser supports fixed, if yes then fine else I will use some ugly hack to position the element. – Alec Smart Jun 10 '09 at 5:56
Would it be easier to just append a class to the Element's className and then handle your hack in a stylesheet? – ajm Jun 10 '09 at 21:45
feedback

5 Answers

up vote 7 down vote accepted

The most reliable way would be to actually feature-test it. Browser sniffing is fragile and unreliable.

I have an example of such test in CFT http://kangax.github.com/cft/#IS_POSITION_FIXED_SUPPORTED. Note that the test should be run after document.body is loaded.

link|improve this answer
Great example, and great site, btw! – nickf Jan 15 '10 at 1:33
Well, thank you :) – kangax Jan 15 '10 at 5:11
6  
unfortunately this test returns a false positive in MobileSafari, where position:fixed is not supported – prendio2 May 21 '10 at 21:51
I have the same problem as Alec, but as prendio2 notes, this test is unfortunately not correct for MobileSafari. Though great otherwise! – hbruce Oct 11 '10 at 13:10
Hi! I think your feature tests are great. What are your terms for usage of your stuff? :) I'd gladly attribute it to you, if that's all it takes. :D Thanks! – Nikki Erwin Ramirez Oct 25 '10 at 6:57
show 4 more comments
feedback

Well, IE6 doesn't support fixed, so you would just check $.browser.msie and $.browser.version with jQuery. This feature is deprecated as of 1.3 and not really recommended to use, though.

You could go down the conditional comments route:

<!--[if IE 6]>
<script src="myscripttohandleie6.js" type="text/javascript"></script>
<![endif]-->
link|improve this answer
2  
Thats deprecated. Plus only IE 6 does not support. IE 7 and IE 8 support fixed. – Alec Smart Jun 10 '09 at 5:53
That method was removed in jQuery 1.3+. – cletus Jun 10 '09 at 5:53
IE7 in standards mode ofcourse. – Alec Smart Jun 10 '09 at 5:55
@Alec: I know, which is why I said "not really recommended." Had a feeling IE7 supported it but wasn't sure. fixed that. @cletus: It's not removed; it's deprecated. – Paolo Bergantino Jun 10 '09 at 5:55
feedback

You could check if position exists by making a code like this:

<html>
<script type="text/javascript">
test = function() {
if(!!document.getElementById("test").style.position) {
alert('true');
}
else{
alert('false');
}
}
</script>

<body>
<p id="test" onclick="test();" style="position:fixed;">Hi</p>
</body>
</html>

Since position exists in all main browser this will always return true. I imagine there isn't a way to check the possible values of position, so you'll have to check which browser and which version the user are viewing your page as Paolo Bergantino said.

link|improve this answer
feedback

position:fixed apparently works for all block elements in Mobile Safari (4.3.2) except body, so the CFT answer (http://kangax.github.com/cft/#IS_POSITION_FIXED_SUPPORTED) should have this in it:

var isSupported = (container.scrollTop === 500 && elementTop === 100);

link|improve this answer
feedback

I find that mobile safari (specifically iOS 4.2 via the iOS Simulator on OSX) refuses to scroll anywhere unless you wait a few miliseconds. Hence the false positive.

I wrote a quick jquery plugin to work around it:

(function($) {
  $.support.fixedPosition = function (callback) {
    setTimeout(
      function () {
        var container = document.body;
        if (document.createElement && container && container.appendChild && container.removeChild) {
          var el = document.createElement('div');
          if (!el.getBoundingClientRect) return null;
          el.innerHTML = 'x';
          el.style.cssText = 'position:fixed;top:100px;';
          container.appendChild(el);
          var originalHeight = container.style.height,
              originalScrollTop = container.scrollTop;
          container.style.height = '3000px';
          container.scrollTop = 500;
          var elementTop = el.getBoundingClientRect().top;
          container.style.height = originalHeight;
          var isSupported = !!(elementTop === 100);
          container.removeChild(el);
          container.scrollTop = originalScrollTop;
          callback(isSupported);
        }
        else {
          callback(null);
        }
      }, 
      20
    );
  }
})(jQuery);
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.