Skip to content

Instantly share code, notes, and snippets.

@bitsprint
Created June 11, 2019 09:06
Show Gist options
  • Save bitsprint/16f50ef435bb843f28c502687379a51f to your computer and use it in GitHub Desktop.
Save bitsprint/16f50ef435bb843f28c502687379a51f to your computer and use it in GitHub Desktop.
Climbs the DOM to find a parent element
var el = $('#some-element');
var selector = '#some-elements-parent-further-up-the-dom';
for ( ; el && el !== document; el = el.parentNode ) {
if ( el.matches( selector ) ) return el;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment