JSFiddle - React, Tailwind, and code Playground

by Alex Cowan

JavaScript

jQuery(document).ready(function($) {
  $("#slider").slider({
    value: 100,
    min: 0,
    max: 500,
    step: 50,
    slide: function(event, ui) {
      $("#slider-value").html(ui.value);
    }
  });
});