progress

Basically a progress bar that can be updated via JavaScript
 <p>Progress: 
 <progress value="32" max="200"><span id="p1">16</span>%</progress>
 </p>
 <script>
  var progressBar = document.getElementById('p1');
  function updateProgress(newValue) {
    progressBar.textContent = newValue;
  }
 </script>

Previous | Next | Top | Cafe con Leche

Copyright 2007 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified March 12, 2007