Hi,
I have added Infragistics dependency DLL and js files.
I have aloso upgraded by browser to IE 9.
When i run the app, i get javascript error. But if i hit continue in the javascript error dialog box, everything works fine.
I have attached the screenshot for reference https://www.dropbox.com/s/o981k8z2is5xosq/Javascript_Error.jpg
Please let me know the fix for this.
You may want to get a more recent version of the Modernizr library. It is trying to check that you have certain codecs installed, which you do not. But I suspect it isn't anticipating an error being thrown by IE9 when these codecs are not present. I presume that more recent versions of Modernizr than are included with MVC3 may deal with this codec detection more gracefully.
You may also want to make sure that the page isn't being loaded in quirks mode. Try adding this meta tag:
<
="IE=9">
Let me know if this helps.
-Graham
Thanks Graham.
Upgrading to Mordenizr 2.5.3 fixed the issue.