from the FAQ
elem = $("#elemid");
if (elem.is (".class") ".class")) {
// whatever
}
or:
elem = $("#elemid");
if (elem.hasClass ("class") "class")) {
// whatever
}
|
2 | fix syntax | ||
|
from the FAQ
or:
|
||||
|
1 |
|
||
|
from the FAQ
or:
|
||||