Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Sample</title>
</head>
<body>
  
<div class="bar" data-value="10"></div><div></div>
<div class="bar" data-value="30"></div><div></div>
<div class="bar" data-value="60"></div><div></div>
<div class="bar" data-value="80"></div><div></div>
<div class="bar" data-value="100"></div><div></div>
</body>
</html>
 
$(function(){
    progressBar($('.bar'));
});
function progressBar($element) {
    var percent = $('.bar').data('value');
    var progressBarWidth = percent * $element.width() / 100;
    $element.find('div').animate({ width: progressBarWidth }, 500).html(percent + " % ");
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers