views:

36

answers:

1

i am working on http://gamercity.info/ymusic/ i am using UI slider as seekbar while the video is played i want to call a seekTo(seconds) function whenever we click anywhere on the seekbar

+1  A: 
$('#slider').slider({
    change: function(event, ui) { 
        alert(ui.value); 
    } 
});​

http://jqueryui.com/demos/slider/

Ben
i tried but it is not working for me:(don't know why
atinder
@atinder - Please edit your question and provide the code you're using.
Ben