Appearance
remove(name: string): this
Removes a class from all the elements.
<div class="example"></div>
$('div').class.remove('example');
The HTML will be updated to:
<div></div>