//sample solution to script.js
$(function() {
$("#slider").slider({
stop: function ( event, ui ) {
// Use jQuery to select the 'volume' <span> and then
// set it to the value of the slider.
$("#volume").html($("#slider").slider("value"));
}
});
});
$(function() {
$("#slider").slider({
stop: function ( event, ui ) {
// Use jQuery to select the 'volume' <span> and then
// set it to the value of the slider.
$("#volume").html($("#slider").slider("value"));
}
});
});
No comments:
Post a Comment