I have some jQuery code.
$('#keywords').find('input').each(function () {
if ('-1' != $(this).val().indexOf(ui.item.label)) {
alert($(this).val());
$(this).closest('.row').next().children().children().children().val('');
}
});
I wonder if I can make some shorthand for triple .children()
in case I do not "know" class or id of this elem.