I have about 10 style pages throughout my website, some for different pages. However, I can't just load all of them at the beginning because some styles override other styles. However, I'd like to all load them after a user first hits the site so that there won't be delays (due to loading the static css/js files) when they go to other pages on the site. Here's basically what I'd like to do:
# main page
<link rel="stylesheet" href="http://examplestyle.css">
# load via javascript after 2 second delay -- DO NOT display on the current page
<img src="http://otherstylesheet.css" width="0">
I'm just making something up with loading the css as an image, but basically I'd just like to pre-fetch the http calls after the user hits the landing page.