handle issues in slider widget
Hi guys
need your help
looking at the demo here http://jqueryui.com/demos/slider/
i cant understand how i can i tell the slider to chose specific div as
handle.
on the demo page in source code part, there is only one div
================================================
<script type="text/javascript">
$(function() {
$("#slider").slider();
});
</script>
<div id="slider"></div>
================================================
where is the second div (handle div).
and i dont want to use themes bundled with ui.
before jq1.3.2 this code use to work
================================================
<script type="text/javascript">
$(function() {
$("#slider").slider({
handle: '.handle'
});
});
</script>
<div id="slider">
<div class="handle"></div>
</div>
================================================
so can some one post a solution please
regards
salman