Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

onSlideEnd not fired when using keyboard #362

Answered by andreruffert
lisardo2 asked this question in Q&A
Discussion options

You must be logged in to vote

I'd suggest using the input or change event instead of the callback functions. e.g.

const $element = $('input[type="range"]');

$element
  .rangeslider({
    polyfill: false
  })
  .on('input', function(e) {
    // do your thing...
  });

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by andreruffert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #353 on February 19, 2021 20:49.