Hi ,
I am using telerik masked text box in my registration form, and property given mask="###/###-####" and I have set MaxLength=10 and I have written Javascript for validation it is working fine for Internet Explorer 9 .
But Later I have installed IE 10 It gives error like You must enter text with 10 or Fewer Characters Even I Have given 123/456-7890 surrounded with Red mark and It will be in many forms please give me correct solutions may I add any script files for IE or need to change in all the forms.
I am waiting for your answer.
Thanks in advance :).
Loading

Suresh MogudalaPosted Apr 17, 2015, 7:34 AM
Finally I got the solution
I have added novalidate attribute for the Form tag.
https://msdn.microsoft.com/en-us/library/ie/hh673544%28v=vs.85%29.aspx
Pankil BhattPosted Apr 16, 2015, 8:01 AM
$.ajax(
cache: false,
url: 'http://myurl',
data: {}
);
This will work for this particular request. If you want to expand the scope of this setting to all AJAX requests, you can set it on the global AJAX configuration:
$.ajaxSetup({ cache: false });