/home/techb158/workloadmatch.com/bower_components/jquery-slimscroll/examples
NameSizeModeActions
libs/-0777rm
allow-page-scroll.html242090777editdlrm
chaining.html130380777editdlrm
disable-fade-out.html240640777editdlrm
dynamic-content.html24280777editdlrm
height-width.html356000777editdlrm
index.html3650777editdlrm
mouse-wheel.html241180777editdlrm
multiple-elements.html354940777editdlrm
navigation.html14030777editdlrm
nested.html107770777editdlrm
programmatic-scrolling.html252150777editdlrm
rail.html583620777editdlrm
scroll-events.html111820777editdlrm
scrollbar.html581740777editdlrm
start-position.html242180777editdlrm
style.css8420777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/jquery-slimscroll/examples/dynamic-content.html (2428B)
jquery.slimscroll - dynamic content Fork me on GitHub
  // update content every second
  setInterval(function(){
    var el = $('<div></div>').html('#' + $('#testDiv').children().length)
            .css({ padding: '3px', border: '1px solid #ccc', margin: '5px' });
    $('#testDiv').append(el);

    // update slimscroll every time content changes
    $('#testDiv').slimscroll();
  }, 1000);

  $('#testDiv').slimscroll({
    alwaysVisible: true,
    height: 150
  });