jquery ile yapılabilir.

$( "input[type='text']" ).change(function() {
if($( this ).val() < 0){
$(this).val("");
}
});