I need to check if 3 fields have been filled in on a form. I am using the following code - instead of click event I am using mouseover, otherwise it will reload the page: I followed the suggestions from this page
$('#dnn_ctr503_DynamicForms_lnkSave').on('mouseover',function()
{
if( $('#dnn_ctr503_DynamicForms_TBR_GUID35b841a2-5019-4cb0-9041-1204c90e5bebEmail').val().length === 0 ) {
alert('warning');
}
});
How could I insert 2 more fields in the code please. So if any of these 3 fields are not filled in the warning message will show up. Thank you.