JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q59426F
  • License ISC

jQuery range slider

Package Exports

  • air-range-slider

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (air-range-slider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Air range slider

Customizable jQuery range slider, built with es5 and css-flexbox.

Quick start

  1. Install plugin via npm or you can download files directly from GitHub:
npm i air-range-slider
  1. Import JQuery and plugin in your project:
import $ from 'jquery';
import 'air-range-slider';
import 'air-range-slider/dist/style.css';
  1. Initialize plugin:
<div class="my-selector"></div>
$('.my-selector').slider([options]);
  1. Access instance of plugin:
$('.my-selector').data('slider');

Demo and docs