Hi. I need to remove the required attribute for a multiline field. None of these javascript codes worked :(
1)
$('_RecommendationNotes, input, select').each(function() {
$(this).removeAttr('required');
});
2)
$('._RecommendationNotes').removeAttr('required', 'True');
3)
$('._RecommendationNotes input').removeAttr('required', 'True');
4)
$('._RecommendationNotes input').removeClass('required').removeAttr('required');