I am working on a project that a former colleague has made. If I run this ASP MVC 4 application in Firefox everything works fine but, when I run it on Internet Explorer 9 I get this weird error:
It says there is a error in the SignalR JavaScript Library but I never heard of this. It breaks into a JS file that is not even in the solution.
This SignalR extension is not installed.
All the references in my views:
<script type="text/javascript" src="~/Scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="~/Scripts/perso.js"></script>
<script src="../../Scripts/jquery-1.7.1.js" type="text/javascript"></script>
UPDATE
I have found the problem, in my console log it breaks on this error:
TypeError: a[0] is undefined @ browserLink:37
This occurs in my jQuery files. I have updated them with the newest version but no success.
I have no idea how to fix this, any ideas?