Skip to content

Instantly share code, notes, and snippets.

@c7x43t
Created May 26, 2021 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c7x43t/2862ac029b795df51dfba6c85806951c to your computer and use it in GitHub Desktop.
Save c7x43t/2862ac029b795df51dfba6c85806951c to your computer and use it in GitHub Desktop.
function getParentElementByType(element,parentType){
while((element=element.parentElement)!==null){
if(element instanceof parentType) return element;
}
return element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment