aboutsummaryrefslogtreecommitdiffstats
path: root/demos/progressbar/default.html
blob: 89dc24c34ddfb6cdf3a11c212d4a2205bb884a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
	<title>jQuery UI Progressbar - Default Demo</title>
	<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
	<script type="text/javascript" src="../../jquery-1.3pre.js"></script>
	<script type="text/javascript" src="../../ui/ui.core.js"></script>
	<script type="text/javascript" src="../../ui/ui.progressbar.js"></script>
	<link type="text/css" href="../demos.css" rel="stylesheet" />
	<script type="text/javascript">
	$(function() {
		$("#progressbar").progressbar({
			value: 37
		});
	});
	</script>
</head>
<body>

<div class="demo">

	<div id="progressbar"></div>

</div><!-- End demo -->



<div class="demo-description">

<p>This is the default determinate progress bar that is used to provide the current % complete status of a process. If the actual percent complete status cannot be calculated, an indeterminate progress bar (coming soon) or spinner animation is a better way to provide user feedback.</p>

<p>The progressbar plugin accepts a single option of Value which can be updated programmatically to animate the bar.</p>

</div><!-- End demo-description -->



</body>
</html>