How is it possible to display (manually, without submit) the HTML element built in validation error message with Javascript?
Example:
if(document.getElementById('id_checkbox').checked == false)
{
showBuiltInErrorMessage('id_checkbox'); --> "Please fill out this field"
}
Thanks for your help!