Solution:
Open the web.config file in the CRM installation directory.
Find "authorizedTypes ", then add another tag inside it.
a.k.a. East Ocean - CRM Technical Blog
<br /> function FollowUpDate() <br /> { <br /> var current=new Date(crmForm.all.createdon.DataValue); <br /> var days=-1; //To handle crmForm onCreate or onChange <br /> if(crmForm.all.createdon.DataValue==null) <br /> { <br /> d=new Date(); <br /> current.setFullYear(d.getYear(),d.getMonth(),d.getDate()); <br /> days=0; <br /> } <br /> <br /> var selected=new Date (crmForm.all.followupby.DataValue); <br /> <br /> var ONE_DAY=1000*60*60*24; <br /> var different=selected-current; <br /> var indicator=Math.round(different/ONE_DAY); <br /> <br /> if(indicator<days){ alert("Backdated disallowed for 'Follow Up By'."); crmForm.all.followupby.DataValue=null; } }