Is Lazybars responsive?
Yes. Lazybars responds when the browser window is resized.
There is also an exposed method refresh
so you can update Lazybars whenever you fire an event that manipulates the DOM.
Example
$('#slide-trigger').click(function() { $('#slide-element').slideDown(function() { $('.lazybars-x').lazybars('refresh'); }); });