Answers for "jquery if immediate parent has class"

1

jquery if has parent

if ($(this).parents('.last').length) {
    // element has an ancestor element with the class "last"
}
Posted by: Guest on January-27-2021
0

jquery has parent with class

if ($elem.parents('.left').length) {

}
Posted by: Guest on March-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language