I just added this code to trigger an alert on newForm.aspx. Unfortunately, after I applied this code Formula column Validation, my form is not working. Any solution?
Formula column validation is not working when below code was applied.
<script type="text/javascript">
$(document).ready(function(){
var alertSpan= $('span[role="alert"]');
alertSpan.text('My Custom Alert!');
});
</script>