closest-link

0.1.0 • Public • Published

Find closest hyperlink in DOM element

Install

$ npm install --save closest-link

Usage

<article>
  <a href="https://ashiknesin.com">Here is link
    <span id="outer-span">Here is outer-span
      <span id="inner-span">Here is inner-span</span>
    </span>
  </a>
</article>
const closestLink = require('closest-link');
const targetElement = document.querySelector('#inner-span')
closestLink(targetElement);
//=> '<a href="https://ashiknesin.com">...</a>'

License

MIT © Ashik Nesin

/closest-link/

    Package Sidebar

    Install

    npm i closest-link

    Weekly Downloads

    2

    Version

    0.1.0

    License

    MIT

    Last publish

    Collaborators

    • ashiknesin