I am trying to remove a specific CSS class from every element on the page. Would I just do something like:
$(body).removeClass('removethis');
$(body).each().removeClass('removethis');
I don't know the correct way to do this. I am doing this to automatically remove a class from every element on the page when javascript is enabled.