Progress bar valueDiv 0% fix

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css">
<p>Controlla mail</p>
<div class="progressbar" data-percent="70">70</div>

CSS

h1 {
    margin: 10px 0;
}

JavaScript

jQuery(function($) {
    $(".progressbar").progressbar({ value: 10 });
 
});