<input type="text" name="kullanici" id="kullanici"/>  
​
jquery kısmı
$('#kullanici').keyup(function(){
    alert($(this).val());
});
​