Can’t quite figure this out. If I use:
$('> .someClass', this);
It will select this > .someClass, but I want to select this AND this > child
Tried
$(this+'> .someClass', this);
//AND
var currentEl = $(this);
$(currentEl, currentEl+'> .someClass')
Any help would be appreciated.
use
andSelf()andSelf() documentation