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);
}
});
Ben
2010-05-30 19:17:36
i tried but it is not working for me:(don't know why
atinder
2010-05-31 14:48:36
@atinder - Please edit your question and provide the code you're using.
Ben
2010-05-31 17:05:28