Currently, I am utilizing a JS library known as fallback.js. This library loads all its <link>
elements at the bottom of the <head>
tag. However, I am facing an issue where I need to load certain stylesheets at the very end, but they require IE conditional comments (which fallback.js does not naturally support). My only idea so far is to try something like if < IE 8 then>
in JS, but I am unsure of how to go about this, especially in this particular context.
Any assistance on this matter would be greatly appreciated!