Sunday 12 May 2019

css - Removing multiple classes (jQuery)




Is there any better way to rewrite this:



$('element').removeClass('class1').removeClass('class2');


I cannot use removeClass(); as it would remove ALL classes, which I don't want.


Answer



$("element").removeClass("class1 class2");



From removeClass(), the class parameter:




One or more CSS classes to remove from
the elements, these are separated by
spaces.



No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...