
Hello friends in these days in every website clients required different-different color scheme and themes so in this article i am going to tell you , how to change website theme.
Javascript
By using this javascript you can change CSS files on button click.
<script type="text/javascript"> function swapStyleSheet(sheet) { document.getElementById('pagestyle').setAttribute('href', sheet); } </script> <link id="pagestyle" rel="stylesheet" type="text/css" href="css/style.css">
HTML
Here are the html button code from here you can Add css files.
<button onclick="swapStyleSheet('css/style.css')">Default</button> <button onclick="swapStyleSheet('css/blue.css')">Blue</button> <button onclick="swapStyleSheet('css/pink.css')">Pink</button>
One Reply to “Change Style Sheet Using javascript”
Comments are closed.