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">
<input class"baluhap" id="test" type="text" >

JavaScript

$(document).ready(LoadMe);


function LoadMe()
{
    
   function test_KeyPressed(e)
    {
       alert(e.keycode);
    }
    $('.baluhap').bind('keypress', function(e){
       var code = e.keyCode ? e.keyCode : e.which;
       if(code == 13) // Enter key is pressed
       {
           // Do stuff here
           alert('Enter key is pressed');
       }
    });
}