If I have css:
.myclass { background: #FF00FF; }
And html:
etc.
Hope I am close to what you are expecting when I say You may please try something like this:-
$(document).ready(function(){ $("button").click(function(){ $("div").toggleClass("myclass"); }); });
Set the color property of all p elements etc. etc. etc.