With if(element.hasClass("class")) {*/do stuff*/} i can check for one class. Is there an eays way to check wether "element" has any of many classes?
I am using if(element.hasClass("class") || element.hasClass("class") ... ), which isn“t too bad, but I am thinking of something like if(element.hasClass("class", "class2"), which unfortunately doesn't work.
Is there something like that? Thanks.

