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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -