closest-find

Find Element Closest

Usage no npm install needed!

<script type="module">
  import closestFind from 'https://cdn.skypack.dev/closest-find';
</script>

README

Closest Find

Find Element Closest

Install

npm i closest-find
# or
yarn add closest-find

Use

// Import Package
import closest from "closest-find";

// Get Element
var element = document.getElementById("example");

// Find Closest
closest(element, ".main"); // .main

// Check Self
closest(element, "#example", true); // #example