This link has been bookmarked by 37 people . It was first bookmarked on 04 Jun 2007, by XO Q.
-
17 Apr 12
-
18 Aug 11
mangarOverview
This is a progress bar plugin for jQuery.
Usage
First, include the progress bar javascript file. -
28 Mar 11
-
25 Jun 10
-
16 Jun 10
-
14 May 10
-
26 Apr 10
-
var pct=0;
var handle=0;
function update(){
$("#progressbar").reportprogress(++pct);
if(pct==100){
clearInterval(handle);
$("#run").val("start");
pct=0;
}
}
jQuery(function($){
$("#run").click(function(){
if(this.value=="start"){
handle=setInterval("update()",100);
this.value="stop";
}else{
clearInterval(handle);
this.value="start";
}
});
$("#reset").click(function(){
pct=0;
$("#progressbar").reportprogress(0);
});
});
-
-
18 Feb 10
-
06 Feb 10
-
01 Oct 09
-
09 Sep 09
-
31 Jul 09
-
06 Jul 09
-
14 Apr 09
-
30 Jan 09
-
10 Jan 09
-
10 Dec 08
-
13 Oct 08
-
07 Jun 08
-
20 Mar 08
-
24 Jan 08
-
16 Jan 08
-
24 Aug 07
-
04 Jun 07
-
26 Feb 07
-
05 Jan 89
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.