(function($) { $.fn.topScrollbar = function(activate) { if (activate == undefined) activate = true; return this.each(function() { var self = $(this); if (self.prev().hasClass('jquery-top-scrollbar')) self.prev().remove(); if (!activate) return; var tmp = self.clone().css({ 'position': 'fixed', 'width': 'auto', 'visibility': 'hidden', 'overflow-y': 'auto' }); tmp.appendTo('body'); var innerWidth = tmp.width(); tmp.remove(); if (self.width() >= innerWidth) return; var outer = $('