at my ajax call success i wish to empty the field.
success: function(msg){
$(wrapperId).prepend(msg);
}
}
I tried this:
success: function(msg){
$(wrapperId).prepend(msg);
$('#message').html("");
}
}
But it wont work