JSFiddle - React, Tailwind, and code Playground

by Nickolay Ilchenko

HTML

<script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<div class="action"></div>

JavaScript

$('.action').slider({
    animate: true,
    range: 'min',
    value: 250,
    step: 1,
    min: 200,
    max: 500,
    stop: function (event, ui) {
        console.log('1');
    }
});