/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$("#sliderLeft").slider({ animate: true, values:180, min: 0, max: 180, step: 1, slide: function(event, ui) { $("#amountLeft").val('Degree ' + ui.value); // show Dynamic changes of slider value $("#pic").rotateLeft(1); // <img border="0" src="/images/mma.gif" name="pic" id="pic"> }, }