IE Browser .ToLower exception fix(solved)
.ToLower exception on IE with jquery,
Its unhandled exception by IE at jquery debuging. Actually its a compatibility issue with IE
Jquery ToLower() function works on IE 9.0 only.when we trying to excute in IE10 with jquery if we use jquery with ToLower function you will get the exception
In order to fix issue i found very good solution i.e we need to ensure your link should work on IE 9.0 compatibility
in the your html page above head tag just add this meta tag which will make your page run on IE 9.0 compatibility
<meta http-equiv="X-UA-Compatible" content="IE=9.0">
Labels:
Jquery