Html5 Slider
Bind to the created event by type: jqxSlider. 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="jqxSlider"></div>
<div id="log"></div>
JavaScript
$('#jqxSlider').on('created', function (event) {
$("#log").html("The Slider has been created ")
});
$('#jqxSlider').jqxSlider({
theme: 'energyblue'
});