Getting Started

The jqxScrollBar represents a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value.
Every UI widget from jQWidgets toolkit needs its JavaScript files to be included in order to work properly.

The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxScrollBar widget requires the following files:

<head>
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head>

The next step is to create a DIV element within the body of the html document.
<div id='jqxscrollbar'>
</div>

The last step is to initialize the widget by adding the following script to the html document:
<script type="text/javascript">
$(document).ready(function () {
$("#jqxscrollbar").jqxScrollBar({ width: 250, height: 18 });
});
</script>

To call a function(method), you need to pass the method name and parameters(if any) in the jqxScrollBar’s constructor.
    $("#jqxscrollbar").jqxScrollBar(‘setPosition’, 100);
    
To set a property(option), you need to pass the property name and value(s) in the jqxScrollBar's constructor.
    $("#jqxScrollBar").jqxScrollBar({ value: 500 });
    
To get a property(option), you need to pass the property name to the jqxScrollBar's constructor.
    var value = $("#jqxScrollBar").jqxScrollBar('value');
    
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when the scrollbar's value is changed. The example code below demonstrates how to bind to the ‘valuechanged’ event of jqxScrollBar.
    $("#jqxscrollbar").bind('valuechanged', function (event) {
        var value = event.currentValue;
    });
    

Basic Sample

<!DOCTYPE html>
<html lang="en">
<head>
<title id='Description'>jQuery ScrollBar Sample </title>
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// Create ScrollBar
$("#jqxscrollbar").jqxScrollBar({ width: 250, height: 18 });
// Create Vertical ScrollBar
$("#jqxverticalscrollbar").jqxScrollBar({ width: 18, height: 250, vertical: true });
// Trigger the 'valuechanged' event.
$("#jqxscrollbar").bind('valuechanged', function (event) {
$('#HorizontalDiv').html('Horizontal (' + parseInt(event.currentValue) + ')');
});
$("#jqxverticalscrollbar").bind('valuechanged', function (event) {
$('#VerticalDiv').html('Vertical (' + parseInt(event.currentValue) + ')');
});
});
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head>
<body class='default'>
<div id='VerticalDiv' style='margin-top: 10px;'>
Vertical</div>
<div style='margin-top: 10px;' id='jqxverticalscrollbar'>
</div>
<div id='HorizontalDiv' style='margin-top: 10px;'>
Horizontal</div>
<div style='margin-top: 10px;' id='jqxscrollbar'>
</div>
</body>
</html>

The result of the above code is: