Introduction
Display status of a determinate or indeterminate process.
Example:
<html> <head> <title>jQuery UI Progressbar - Default functionality</title> <link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet"></link> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> <script> $(function() { $( "#progressbar" ).progressbar({ value: 37 }); }); </script> </head> <body> <div id="progressbar"> </div> </body> </html>
0 comments :
Post a Comment