0.8.0 • Published 2 years ago

tippy-remote-plugin v0.8.0

Weekly downloads
90
License
MIT
Repository
github
Last release
2 years ago

tippy-remote-plugin

A Tippy.js plugin to load remote content.

Install

npm install tippy-remote-plugin

Usage

With options

<a href="#" id="remote">My link</a>
import tippy from 'tippy.js'
import remote from 'tippy-remote-plugin'

tippy('#remote', {
  plugins: [remote],
  remote: '/remote-url.html'
})

Options

NameDefaultDescription
remotefalseThe URL to get remote content. Possible values: string, false

With data attributes

<a href="#" data-tippy-remote="/remote-url.html">My link</a>
import tippy from 'tippy.js'
import remote from 'tippy-remote-plugin'

tippy('[data-tippy-remote]', {
  plugins: [remote]
})
0.8.0

2 years ago

0.7.0

2 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.0

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago