jquery ui - how to make progess widget show with the effect? -
how make widget show effect
when run wont show?
$("#myid").progressbar({ show: { effect: "blind", duration: 800 } });
there no show options progressbar: http://api.jqueryui.com/progressbar/
you mean ike this?: http://jsfiddle.net/2zyf8/1/
var progressbar = $('#myid'); progressbar.progressbar({ value: 25, create: function (event, ui) { var bar = $('.ui-progressbar-value'); var realwidth = bar.width(); bar.width(0).animate({ width: realwidth }, 800); } });
Comments
Post a Comment