I\'m using bootstrap for the interface of the website I\'m developing. I am also planning to integrate the bootswatch themes to my site. I have created a dropdown menu conta
you can try something like this
html:
javascript:
function setTheme(themeName) { $('#theme-sheet').attr({ href: "https://bootswatch.com/slate/bootstrap.min.css" });; }
where in the setTheme function will be called from your desired source such as dropdown or button.