I\'m looking at using less.js (looks great), but our site requires that some styles be loaded dynamically after initial page load. It seems, however, that all LESS styleshe
You can use this lightweight (3k) library to lazy load less / css and js files ( disclaimer: i am the author).
This is as simple as:
lazy.load('/static/less/style.less');
It can also receive a callback, load some more assets with dependencies and takes care about cache.