Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
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.

[HTML]<html lang="en">
<head>
<meta charset="utf-8" />

<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>

.ui-slider .ui-slider-handle{
height: 30px;
}

<script>
$(function() {
$(".slider-vertical").slider({
orientation: "vertical",
});
});
</script>
</head>
<body>

</body> [/HTML]
Posted

1 solution

The answer is found. Topic is closed.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900