Make Attachments Mandatory In SharePoint Lists - JackHu88/Comm GitHub Wiki
function PreSaveAction() {
var myAttachments = document.getElementById("idAttachmentsTable");
if (myAttachments == null || myAttachments.rows.length == 0) {
document.getElementById("idAttachmentsRow").style.display = 'none';
alert("Attachments are mandatory for this list. Please attach the appropriate files");
return false;
} else {
return true
}
}