<script>
// disable links in textarea and add class Hash number for the class in textarea
jQuery(‘.596a96cc7bf9108cd896f33c44aedc8a’).focusout(function (e) {
var Message = jQuery(‘.596a96cc7bf9108cd896f33c44aedc8a’).val();
if (/(http|https|ftp):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/i.test($(this).val())) {
alert(‘Links Not Allowed’);
e.preventDefault();
}
else if (/^[a-zA-Z0-9\-\.]+\.(com|org|net|mil|edu|COM|ORG|NET|MIL|EDU)$/i.test($(this).val())) {
alert(‘Links Not Allowed’);
e.preventDefault();
}
});
</script>
