Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
  <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/redmond/jquery-ui.css"/>
  
  <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script> 
  <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js'></script> 
  <script type='text/javascript'>
    $(document).ready(function() {
      
      var selected = $("#hour");
      var hour_value = $("#hour :selected").text();
      $("#slider").slider({
      min: 1,
      max: 96,
      value: selected[0].selectedIndex + 1,
      slide: function(event, ui) {
        selected[0].selectedIndex = ui.value - 1;
        $(".time_viewer").text($("#hour :selected").text());
      }
    });
    $("#hour").click(function() {
      $("#slider-vertical").slider("value", this.selectedIndex + 1);
    });
    $("#hour").change(function() {
      $(".time_viewer").text(hour_value);
    });
});
    
    </script>
 
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
<div id="slider" style="width:150px;"></div>
  <select id="hour">
    <option>12pm</option>
    <option>1pm</option>
    <option>2pm</option>
    <option>3pm</option>
    <option>4pm</option>
    <option>5pm</option>
   </select>
  <span class="time_viewer">This Should Update</span>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers