(function($){
 
    //Attach this new method to jQuery
    $.fn.getScrollWidth = function(){
        var o = this[0];
        return o.scrollWidth - o.clientWidth;
    };
    
})(jQuery);

