DOM question #3

Find the distance (number of edges) between two DOM elements.

We can get distance between given 2 nodes by calculating LCA and then adding the distance between LCA to these two nodes.

So we can write code as

const getParentList = (node)=>{


This content originally appeared on DEV Community and was authored by Shweta Kale

Find the distance (number of edges) between two DOM elements.

Image description

We can get distance between given 2 nodes by calculating LCA and then adding the distance between LCA to these two nodes.

So we can write code as

const getParentList = (node)=>{
   const parentList = [node];
let tempNode = node;
  while(tempNode.parentElement){
    parentList.push(tempNode.parentElement);
      tempNode = tempNode.parentElement;
  }

return parentList;
}

const LCA = (node1, node2)=>{
  const parentList1 = getParentList(node1);
  const parentList2 = getParentList(node2);

   for(let i=0; i<parentList1.length; i++){
       const index2 = parentList2.findIndex(item=> item === parentList1[i]);
       if(index2!==-1){
          return index2 + i;
       }
   }
return -1;
}


This content originally appeared on DEV Community and was authored by Shweta Kale


Print Share Comment Cite Upload Translate Updates
APA

Shweta Kale | Sciencx (2025-02-20T17:13:30+00:00) DOM question #3. Retrieved from https://www.scien.cx/2025/02/20/dom-question-3/

MLA
" » DOM question #3." Shweta Kale | Sciencx - Thursday February 20, 2025, https://www.scien.cx/2025/02/20/dom-question-3/
HARVARD
Shweta Kale | Sciencx Thursday February 20, 2025 » DOM question #3., viewed ,<https://www.scien.cx/2025/02/20/dom-question-3/>
VANCOUVER
Shweta Kale | Sciencx - » DOM question #3. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/02/20/dom-question-3/
CHICAGO
" » DOM question #3." Shweta Kale | Sciencx - Accessed . https://www.scien.cx/2025/02/20/dom-question-3/
IEEE
" » DOM question #3." Shweta Kale | Sciencx [Online]. Available: https://www.scien.cx/2025/02/20/dom-question-3/. [Accessed: ]
rf:citation
» DOM question #3 | Shweta Kale | Sciencx | https://www.scien.cx/2025/02/20/dom-question-3/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.