How to dynamically change themes after clicking a drop down menu of themes
Fiddle:http://jsfiddle.net/82AsF/ (click the themes dropdown in the navbar)Give your links a class theme-link and a data-theme value of the theme name like so: <a href=”#” data-theme=”amelia” class=”theme-link”>Amelia</a> Then, define your themes in a global variable like so: var themes = { “default”: “//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css”, “amelia” : “//bootswatch.com/amelia/bootstrap.min.css”, “cerulean” : “//bootswatch.com/cerulean/bootstrap.min.css”, “cosmo” : “//bootswatch.com/cosmo/bootstrap.min.css”, “cyborg” : “//bootswatch.com/cyborg/bootstrap.min.css”, … Read more