Html5 ScrollBar

Invoke the isScrolling method of the jqxScrollBar. Author: http://jqwidgets.com

by jqwidgets

HTML

<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<div id='jqxscrollbar'></div>
<div id='log'></div>

JavaScript

$("#jqxscrollbar").jqxScrollBar({
    width: 250,
    height: 18,
    theme: 'energyblue'
});
$("#jqxscrollbar").on('valuechanged', function () {
    var scrolling = $('#jqxscrollbar').jqxScrollBar('isScrolling');
    $("#log").html(scrolling);
});