ScrollBalance.js

2015-03-29

ScrollBalance.js is a javascript plugin that intelligently uses position: fixed to combat unsightly gaps in multi-column layouts, when columns are of different heights. View a demo or the documentation

Quick start

var sb = new ScrollBalance($('.column'));

// bind window events (required)
sb.bind();

// call when column content changes
sb.initialize();

// disable and re-enable the plugin
sb.disable();
sb.enable();

// completely remove the plugin
sb.teardown();