jQuery & jQueryUI Base

by rluuan

HTML

<link rel="stylesheet" href="http://ajax.microsoft.com/ajax/jquery.ui/1.8.7/themes/black-tie/jquery-ui.css">
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js"></script>
<div id="progressbar"></div>

JavaScript

$(document).ready(function() {
    $( "#progressbar" ).progressbar({
      value: 37
    });
});