Porcentagem / Minimo e Maximo

by Rafael Nepomuceno

HTML

<div class="f">percentage</div>

CSS

.f
{
    width:200px;
    background-color:#cccccc;
    position:relative;
    margin:0 auto;
}

JavaScript

$(document).ready(function(){
   //var f = $(".f").width() / $('.f').parent().width() * 100;
    //var f = 1 / 512 * 100;
    var f = 500 / 512 * 100;
      alert(f);    
});