プログレスバーの値を見つけて、すべてのステップでパーセンテージでインクリメントできるようにしたいのですが、何を試しても未定義であるか、オブジェクトがインスタンス化される前にメソッドを呼び出すことができません。
私が試したこと:
alert($('progressbar:first').prop('progress-label'));
progressbarValue = progressbar.find( ".progress-label" ).val();
HTML
<div id="progressbar"><div class="progress-label">Form Process</div></div>
if(condition == true) {
progressbar = $( "#progressbar" );
progressbarValue = progressbar.find( ".ui-progressbar-value" );
progressLabel = $( ".progress-label" );
var size = parseInt($("#fieldWrapper .step").size(),10);
var progress = 100/size ;
alert($('progressbar:first').prop('progress-label'));
progressbar.progressbar({
value: progress,
change: function() {
progressLabel.text( progressbar.progressbar( "value" ) + "%" );
},
complete: function() {
progressLabel.text( "Complete!" );
}
});
progressbarValue.css({
"background": '#' + Math.floor( Math.random() * 16777215 ).toString( 16 )
});
}