JavaScript error in Browser-Link

29,914

I imagine that you're using Visual Studio 2013? If so, there's a new feature called Browser Link, it's enabled by default. I just upgraded to VS2013 as well and I'm getting a lot of errors related to Browser Link, when I disable it everything works perfectly.

Here's some more information about Browser Link and how to disable it: http://blogs.msdn.com/b/webdev/archive/2013/06/28/browser-link-feature-in-visual-studio-preview-2013.aspx

Share:
29,914
Nanou Ponette
Author by

Nanou Ponette

Currently working as .NET ASP MVC Web Developer

Updated on June 02, 2020

Comments

  • Nanou Ponette
    Nanou Ponette almost 4 years

    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:

    image

    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?

  • Nanou Ponette
    Nanou Ponette over 10 years
    Yes, I cleaned it up a bit but I still get the error on 2 of the 4 pages. I don't know why.
  • ToastyMallows
    ToastyMallows over 10 years
    No problem @NanouPonette, Please mark this as the answer if it helped you :)
  • DreamTeK
    DreamTeK over 10 years
    Another Microsoft special! #BrokenByDesign
  • Jagd
    Jagd almost 7 years
    For VS 2017, in the debug toolbar there is a dropdown next to the "Refresh Linked Browsers" button. Click the dropdown and then you'll see the "Enable Browser Link" option.