javscript find closest parent of element code example
Example 1: javascript node has parent with class
function hasParentClass(child, classname){
if(child.className.split(' ').indexOf(classname) >= 0) return true;
try{
return child.parentNode && hasParentClass(child.parentNode, classname);
}catch(TypeError){
return false;
}
}
Example 2: javascript find nearest element
const closest = (arr, n) => arr.reduce((prev, curr) => Math.abs(curr - n) < Math.abs(prev - n) ? curr : prev);
const closest = (arr, n) => arr.sort((a, b) => Math.abs(a - n) - Math.abs(b - n))[0];
closest([29, 87, 8, 78, 97, 20, 75, 33, 24, 17], 50);