I have multiple stylesheet put only want to change out one (lets call it dark.css) for another (lets call it light.css); without effecting any of the others. I know jQuery will change out a current stylesheet for another fairly easily, but I can't seem to figure out how just change the one stylesheet.
Currently working with something like this:
$(".dark-button").click(function() {
$("link[rel=stylesheet]").attr({href : "dark.css"});
});
// light
$(".light-button").click(function() {
$("link[rel=stylesheet]").attr({href : "light.css"});
});
});