JSFiddle - React, Tailwind, and code Playground

by ajinkyax

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<div id="slider"></div>

CSS

#slider{
    width:500px; height:10px;position: relative;
}

JavaScript

$(function() {
    $( "#slider" ).slider();
  });