When is one preferred over the other when searching for nested Divs?
find() vs childern() in jQuery
find() – search through the matched elements in all the subsequent level ,All levels down. children() – search through the matched elements’ child only (single level down).
find() – search through the matched elements in all the subsequent level ,All levels down.
children() – search through the matched elements’ child only (single level down).