The standard way to create a vertical slider by JQ UI. That's only if the cheating, the height of the handle more than the standard (20px), then when I click on the slider handle and move the mouse at least one pixel in any direction - the handle of the slider jumps a few pixels. I would like to do so, that does not bounce. Thank you in advance for your answers. Here is the link.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<style type="text/css">
.ui-slider .ui-slider-handle{
height: 30px;
}
</style>
<script>
$(function() {
$(".slider-vertical").slider({
orientation: "vertical",
});
});
</script>
</head>
<body>
<div class="slider-vertical"></div>
</body>
</html>