Answers for "jquery switch css style sheets"

0

jquery switch css style sheets

$('#grayscale').click(function (){
   $('link[href="style1.css"]').attr('href','style2.css');
});
$('#original').click(function (){
   $('link[href="style2.css"]').attr('href','style1.css');
});
Posted by: Guest on March-19-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language