Okay I\'m using jQuery and currently getting max value of scrollbar doing this:
var $body = $(\'body\'); $body.scrollLeft(99999); // will give me the max val
Simple solution is
var maxScrollLeft = $(document).width() - $(window).width();