I\'m trying to add SignalR to my project (ASPNET MVC 4). But I can\'t make it work.
In the below image you can see the error I\'m receiving.
For ASP.Net MVC folks:
Check your _Layout.cshtml: If you are calling the jquery bundle after the @RenderBody(), you will get this error.
_Layout.cshtml
@RenderBody()
Resoultion: Just move the @Scripts.Render("~/bundles/jquery") to the head section or write all signalr scripts in the scripts "section"
@Scripts.Render("~/bundles/jquery")