0.1.0 • Published 7 years ago

closest-link v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

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