So I have a slider widget that I set some values on and now I want to trigger it's change event so it can process as per normal the "slide" process of the control. So my current process looks like:
// now I want to trigger the change event on $("#slider-vertical").slider
// I've tried a number of things but nothing seems to work.. e.g., $("#slider-vertical").slider("change") (syntax error)... $("#slider-vertical").slider().change() (hahaha!) not sure what else to try.
Hello, I'm trying to use the JQuery slider control in a vertical
orientation.
The idea is to setup a layout like this:
[ total number of items]
||
[] Percent of leveraging of items n%
||
[ new item count ]
[ used item count ]
and as the percentage is changed the new item and used item will be
adjusted accordingly.
My question first question... how do I adjust the length of the
vertical slider? I have found on how to do this for a horizontal
slider, but not for vertical, and when attempting to apply something
similar (height or width) I can't seem to get it to change. The
default length is simply too long.