Wijmo UI for the Web
Markup and Scripting
Wijmo User Guide > Widgets > ProgressBar > Markup and Scripting

The HTML markup for a wijprogressbar widget looks like this.

Markup
Copy Code
<div id="progressbar" style="width:50px;height:300px"></div>

You can initialize the widget with the following jQuery script.

Script
Copy Code
<script id="scriptInit" type="text/javascript">
    $(document).ready(function () {
        $("#progressbar").wijprogressbar({ 
            value: 75, 
            fillDirection: "north" 
        });
    });
</script>

The markup and script featured here results in the following live widget. Reload the page to see the animation.

See Also

Reference