File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 " />
5
+ < title > jQuery UI Progressbar - Display value</ title >
6
+ < link type ="text/css " href ="../../themes/base/jquery.ui.all.css " rel ="stylesheet " />
7
+ < script type ="text/javascript " src ="../../jquery-1.4.2.js "> </ script >
8
+ < script type ="text/javascript " src ="../../ui/jquery.ui.core.js "> </ script >
9
+ < script type ="text/javascript " src ="../../ui/jquery.ui.widget.js "> </ script >
10
+ < script type ="text/javascript " src ="../../ui/jquery.ui.progressbar.js "> </ script >
11
+ < link type ="text/css " href ="../demos.css " rel ="stylesheet " />
12
+ < script type ="text/javascript ">
13
+ $ ( function ( ) {
14
+ $ ( "#progressbar" ) . progressbar ( {
15
+ value : 37 ,
16
+ displayValue : '37 of 100 done'
17
+ } ) ;
18
+ } ) ;
19
+ </ script >
20
+ </ head >
21
+ < body >
22
+
23
+ < div class ="demo ">
24
+
25
+ < div id ="progressbar "> </ div >
26
+
27
+ </ div > <!-- End demo -->
28
+
29
+
30
+
31
+ < div class ="demo-description ">
32
+
33
+ < p > Display custom value (string) in progressbar.</ p >
34
+
35
+ </ div > <!-- End demo-description -->
36
+
37
+
38
+
39
+ </ body >
40
+ </ html >
You can’t perform that action at this time.
0 commit comments