I am trying to exclude two cases in my CSS selector. Currently, the selector is as follows:
$$('select:not([class=session])').each(function(){
})
But I want to exclude another class called "sessionproperties"
Is there a way to exclude more than one from one selector operator? Any help on this is welcome.
note: I tried using the ~ = operator for the word "session", but it doesnโt work for me completely.
source
share