The CMS I'm using is dependent on a certain version of Bootstrap. However, I need features of Bootstrap 3.3.6 depending on which page is loaded in the browser.
I had thought to use javascript or jQuery to dynamically include whichever Bootstrap version I needed based on the URL of the page. But, because Bootstrap is loaded in the <head>
tag, I can't figure out how to make the javascript run since (from what I'm reading, but maybe misunderstanding) Javascript won't run in <head>
tags.
Is there a way to dynamically select which version of Bootstrap to include using only Javascript or jQuery?