This is upon Form Load
I have no problem toggling the required off using this:
$('.req select').removeClass('required').removeAttr('required');
$('.req textarea').removeClass('required').removeAttr('required');
Results:
The required attribute is gone which is what I want.
The problem is when I toggle it back on. Instead of required = "True" it is showing as required = "required"
Using This:
$('.req select').attr('required', "True");
Gets this result:
Any ideas as to why this is not required="True"