@nichoth/catch-links

0.2.4 • Public • Published

catch links

dependencies types module license

Like the classic @substack module, but updated.

Intercept local link clicks on a page, for client-side pushState UIs.

install

npm i -S @nichoth/catch-links

use

common JS

const catchLinks = require('@nichoth/catch-links').default

ESM

import CatchLinks from '@nichoth/catch-links'

example

Given this HTML,

<body>
    <a id="local-link" href="/foo">local</a>
    <a href="https://www.npmjs.com/" id="remote-link">remote</a>
</body>

Use this JS:

import CatchLinks from '@nichoth/catch-links'

// given a click on `#local-link`
CatchLinks(document.body, function onLinkClick (href) {
    // this will not be called on click to #remote-link

    console.log('href', href)
    // => '/foo'
})

Readme

Keywords

none

Package Sidebar

Install

npm i @nichoth/catch-links

Weekly Downloads

0

Version

0.2.4

License

MIT

Unpacked Size

23.8 kB

Total Files

20

Last publish

Collaborators

  • nichoth