Thanks, I'll test this out.

The UI mail list was unresponsive, so I reposted here.

Forking the mailing lists is probably a bad idea. There is a big
network effect here.

Ivan

On Jun 13, 12:26 pm, Kyle <[EMAIL PROTECTED]> wrote:
> A few things. I'm a novice with the slider (started using it
> yesterday), the jQuery UI Google Group might be a better place to post
> this, and I think you should post an example on a test page somewhere.
>
> That said, try this and see if it works.
>
>   $(document).ready(function(){
>                 $("#mySlider").slider( {
>                         min: 1,
>                         max: 720,
>                         steps: 720,
>                         slide: function(e, ui){
>                                 if(ui.value > 0){
>                                         $("#sliderVal").text(ui.value);
>                                 }
>                                else{
>                                        $("#sliderVal").text("0");
>                                 }
>                         }
>                 });
>   });

Reply via email to