I am using the jquery ui slider. The problem I'm experiencing is that
when I try to drag the slider, instead of sliding left or right, the
image for the slider handle is dragged out, sort of when you drag a
regular image with no javascript associated with clicking or dragging
the image. Why would this happen instead of the expected behavior?
Here is the div in my page:
<div id='height-slider' style='width: 300px;'></div>
Here is the associated javascript:
jQuery(document).ready(function($) {
jQuery("#height-slider").slider({
range: "min",
value: document.getElementById('widgetHeight').value,
min: 150,
max: 1000,
step: 1,
slide: function(event, ui) {
document.getElementById('widgetHeight').value = ui.value;
}
});
});
where widgetHeight is just a text input.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---