is there any difference b/w `
$(this).parent().children(".name")
and
$(this).parent().find(".name")
? Both these function return the same object. When I do
console.log($(this).parent().children(".name"));
and
console.log($(this).parent().children(".name"));
both these function print object of div name on console..