1.0.6 • Published 2 years ago

closest-find v1.0.6

Weekly downloads
2
License
MIT
Repository
-
Last release
2 years ago

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