The code below is used to find an element that can be scrolled (body or html) using javascript.
var scrollElement = (function (tags) { var el, $el, init; // iterate through the tags... while (el = tags.pop()) { $el = $(el); // if the scrollTop value is already > 0 then this element will work if ( $el.scrollTop() > 0){ return $el; } // if scrollTop is 0 try to scroll. else if($el.scrollTop( 1 ).scrollTop() > 0) { // if that worked reset the scroll top and return the element return $el.scrollTop(0); } } return $(); } (["html", "body"])); // do stuff with scrollElement...like: // scrollElement.animate({"scrollTop":target.offset().top},1000);
This code works fine when the height of the document greater than the height of the window . However, when the height of the document same or less than the window , the method above will not work, because scrollTop() will always be 0. This becomes a problem if the DOM is updated and the height of the document grows after the height of the window after running the code.
Also, I usually don't wait for document.ready to configure my javascript handlers (this generally works). I could add a high div to the body temporarily to make the above method work, but this requires the document to be ready in IE (you cannot add the node element to the body element until the tag is closed), more on the topic document.ready "anti template " read this .
So, I would like to find a solution that finds a scrollable element, even if document is short. Any ideas?
javascript jquery cross-browser scroll
David murdoch
source share