f0eb9 No.1170
using the loadcss library can significantly improve your site's css performance. instead of linking all styles in head or body tags at once, it loads them asynchronously on demand when an element requiring that specific css is rendered. here's a simple example to get you started with using `loadcss`: 1) first include the library by adding this script tag before your closing </body> : ``<script src="
https://cdnjs.cloudflare.com/ajax/libs/lazyload css plugin for jquery2/loading/ loading.min.js"></scipt>`` 2 ) now, when you want to load a css file on demand: `$(document).ready(function() { $('selector').loadcss('.css-file'); });`