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.

Is there a simple JavaScript solution for this that is device- and library agnostic?

I'd like to add a class to the html element so I can deliver scrollable containers to mobile when possible.

This would be a similar approach that Modernizr takes, detecting feature support instead of browser detection. I just don't want to use the whole Modernizr framework. Trying to keep the JavaScript light for a mobile project.

Thanks!

share|improve this question
please put some effort on your question, – Triode Mar 15 '12 at 16:32
Possible Duplicate: stackoverflow.com/questions/3343311/…. Also see: lostmonocle.com/post/870842095/… – Prescott Mar 15 '12 at 16:39
I was thinking something more like this, but having trouble finding it: stackoverflow.com/questions/3911866/… – ackernaut Mar 15 '12 at 16:50
1  
This is a valid question. The examples above check position: fixed and if scroll bars are visible. Neither example checked for overflow: scroll support. – respectTheCode Jun 2 '12 at 11:29
Maybe this isn't any help to you, but once you detect that the browser doesn't support overflow:scroll, here is a library that I've used as a fallback: cubiq.org/iscroll-4. – Joshua Dwire Nov 7 '12 at 16:25

2 Answers

Its not perfect but I am using this to detect -webkit-overflow-scrolling.

var overflow-scrolling = typeof($("body")[0].style["-webkit-overflow-scrolling"]) !== "undefined";

Then I say if not overflow-scrolling and mobile then I load iScroll.

It means that devices that support overflow: scroll but not -webkit-overflow-scrolling will still load iScroll but this at least gives native scrolling to iOS 5 and modern android.

share|improve this answer
you probably want to replace the hyphen with an underscore? – donquixote Dec 30 '12 at 10:27

Here's a solution that checks for all possible options, including non-vendor prefixed properties and doesn't have any dependencies on libraries like jQuery or Modernizr:

function hasOverflowScrolling() {
    var prefixes = ['webkit', 'moz', 'o', 'ms'];
    var div = document.createElement('div');
    var body = document.getElementsByTagName('body')[0];
    var hasIt = false;

    body.appendChild(div);

    for (var i = 0; i < prefixes.length; i++) {
        var prefix = prefixes[i];
        div.style[prefix + 'OverflowScrolling'] = 'touch';
    }

    // And the non-prefixed property
    div.style.overflowScrolling = 'touch';

    // Now check the properties
    var computedStyle = window.getComputedStyle(div);

    // First non-prefixed
    hasIt = !!computedStyle.overflowScrolling;

    // Now prefixed...
    for (var i = 0; i < prefixes.length; i++) {
        var prefix = prefixes[i];
        if (!!computedStyle[prefix + 'OverflowScrolling']) {
            hasIt = true;
            break;
        }
    }

    // Cleanup old div elements
    div.parentNode.removeChild(div);

    return hasIt;
}

alert(hasOverflowScrolling());
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.