jquery-ui/demos/progressbar/default.html

36 lines
766 B
HTML
Raw Normal View History

<!DOCTYPE html>
2008-12-30 04:16:51 +00:00
<html lang="en">
<head>
2010-09-10 14:27:32 +00:00
<meta charset="utf-8">
<title>jQuery UI Progressbar - Default functionality</title>
2010-09-10 14:27:32 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script src="../../jquery-1.4.2.js"></script>
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.progressbar.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
2008-12-30 04:16:51 +00:00
$(function() {
2010-09-10 14:27:32 +00:00
$( "#progressbar" ).progressbar({
2008-12-30 04:16:51 +00:00
value: 37
});
});
</script>
</head>
<body>
2008-12-30 20:40:41 +00:00
<div class="demo">
2010-09-10 14:27:32 +00:00
<div id="progressbar"></div>
2008-12-30 20:40:41 +00:00
</div><!-- End demo -->
<div class="demo-description">
<p>Default determinate progress bar.</p>
2008-12-30 20:40:41 +00:00
</div><!-- End demo-description -->
2008-12-30 04:16:51 +00:00
</body>
</html>