Skip to content
Related Articles
Open in App
Not now

Related Articles

JQuery UI | Progressbar method

Improve Article
Save Article
Like Article
  • Last Updated : 27 Feb, 2019
Improve Article
Save Article
Like Article

Jquery UI (user interface) is the JavaScript library built on top of jQuery JavaScript Library. It is the collection of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.

Progress bars tells us the percentage of our task completed and how much it is left. It is a GUI widget which creates a type of interaction between the user and the system.
There is two type of progress bar

  • determinate progress bar
  • indeterminate progress bar

Syntax:
The progressbar() method has two forms and the use of each form depends on the requirement. These are as follows :-

$(selector, context).progressbar (options)
$(selector, context).progressbar ("action", params)

The following table shows the different options that can be used with this method:

OPTIONPURPOSE
disabledWhen the progress bar disables set to true. By default its value is false.
maxMaximum value for a progress bar. By default its value is 100.
valueInitial value of the progress bar. By default its value is 0.

Example: Below is the implementation of the above explained method:




<!DOCTYPE html>
<html>
  
<head>
    <title>my progressbar</title>
    <link rel="stylesheet" 
          type="text/css" 
    
    <script type="text/javascript" 
            src="https://code.jquery.com/jquery-1.10.2.js">
    </script>
    
    <script type="text/javascript" 
            src="https://code.jquery.com/ui/1.10.4/jquery-ui.js">
    </script>
    
    <style type="text/css">
        .ui-widget-header {
            background: gray;
            border: 1px solid black;
        }
    </style>
    <script>
        $(function() {
            $("#progressbar").progressbar({
                value: 90
  
            });
        });
    </script>
  
</head>
  
<body>
    <div id="progressbar">
    </div>
</body>
  
</html>

Output:


My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!