In order to show a progress bar using jquery, below code is used..
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"/>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
<div id="progressbar"></div>
<script>
$("#progressbar").progressbar({
value: false
});
</script>