ProgressBar not loading
ProgressBar not loading
Hi Guys
I am trying to use the progress bar but its not showing on the HTML
page. No idea why its doing this. Code below:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Loading www.ShadyBee.com</title>
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery-
ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$("#progressbar").progressbar({
value: 37
});
});
</script>
<style>
<!--
#progressbar {
height : 100px;
width : 300px;
}
-->
</style>
</head>
<body>
<div id="progressbar"></div>
</body>
</html>