0
我有以下的jQuery UI的滑塊代碼工作:JQuery的UI滑塊+到最大位置
$('div#chatFriendsSliderPath').slider({
orientation: 'vertical',
animate: 'fast',
change: handleSliderChange,
slide: handleSliderSlide,
range: 'min',
min: 0,
max: 100,
value: 100
});
我有在頂部和底部以及這些按鈕將滑塊移動到頂部/最大或最低/最低位置。下面的代碼。
// Chat Contacts - Scroll to Top
$(document).on('click','img#chatContactsSliderBarTop', function() {
alert('top...');
});
// Chat Contacts - Scroll to Bottom
$(document).on('click','img#chatContactsSliderBarBottom', function() {
alert('bottom...');
});
我需要什麼,到位報警代碼來獲取移動四肢滑塊?
注意:還有我沒有放在這裏的更改/幻燈片代碼。