Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css" rel="stylesheet" type="text/css" />
  <link href="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.2.0/css/ion.rangeSlider.min.css" rel="stylesheet" type="text/css" />
  <link href="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.2.0/css/ion.rangeSlider.skinModern.min.css" rel="stylesheet" type="text/css" />
  <script src="https://code.jquery.com/jquery-1.8.3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.2.0/js/ion.rangeSlider.min.js"></script>
</head>
<body>
  <input id="range_01" />
  <div>
    <label for="r01">
      <input type="radio" id="r01" name="r" value="30" checked />
      Mode 30
    </label>
    <label for="r02">
      <input type="radio" id="r02" name="r" value="50" />
      Mode 50
    </label>
  </div>
  <script>
    $(document).ready(function () {
      $("#range_01").ionRangeSlider({from_min: 30});
      $("input[name='r']").on('change', function(){
        $("#range_01").data("ionRangeSlider").update({from_min: this.value});
      });
    });
  </script>
</body>
</html>
Output 300px

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers