Visual Studio 2013 javascript error while running in DEBUG mode
If you encounter a javascript error only when running through Visual Studio (and not standalone), then you are probably running into this new feature in Visual Studio 2013 – called Browser Link.
It is a two way communication between Visual Studio and your launched app (using Signal R , I believe).
To disable this feature, add the following key to Web.config:
<appSettings>
...
<add key="vs:EnableBrowserLink" value="false" />
</appSettings>
Leave a Reply