JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.css">
<div data-role="fieldcontain">
    <label for="slider-2">Input slider:</label>
    <input type="range" name="slider-2" id="slider-2" value="25" min="0" max="100" data-theme="a" data-track-theme="b" />
</div>

JavaScript

$( document ).delegate("#slider-2", "range", function() {
  alert('A page with an ID of "aboutPage" was just created by jQuery Mobile!');
});