JSFiddle - React, Tailwind, and code Playground

by Gonzalo

HTML

<div id="slider"></div>

JavaScript

$( "#slider" ).slider({
    values: [ 2008,2009,2010,2011,2012,2013 ],
    start: function( event, ui ) {
        alert('start');
    },
    stop: function(event, ui){
        alert('stop');
    }
});