Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript run a particular css class on page load Reply To: run a particular css class on page load

#151943
lrelia
Participant

JQuery can help.

$('button').click(function() {
 $('html').addClass('whatYouWant');
});