User475983607 posted
How do I clear error message when the user keyup or type a character into the textbox?
how to clear the div when a character is typed into textbox?
Pretty simple.
$('selector').keyup(function(){
$('errorMessageSelector').html('');
});
Or use $('errorMessageSelector').text('');
You can find the selector using dev tool (F12). Right click on the element in the elements view -> Copy -> Copy selector. then paste the selector in you script.
I strongly recommend that you learn jQuery from the jQuery docs.