JQuery JavaScript Tutorial





  jQuery UI Slider - Vertical slider
  
  
  
  
  
  
    #demo-frame > div.demo { padding: 10px !important; };
  
  
  $(function() {
    $("#slider-vertical").slider({
      orientation: "vertical",
      range: "min",
      min: 0,
      max: 100,
      value: 60,
      slide: function(event, ui) {
        $("#amount").val(ui.value);
      }
    });
    $("#amount").val($("#slider-vertical").slider("value"));
  });
  




Volume:





Change the orientation of the slider to vertical.  Assign a height value via .height() or by setting the height through CSS, and set the orientation option to "vertical."