I am trying to add SignalR into my MVC application. Every required script to initialize SignalR loading well and in correct order like

but still when i am trying to read the $.connection.hub.start() i am getting this below
error

I am not getting what is going wrong here.
$(function () {
$.connection.hub.start();
});
$.connection.hub.error(function (err) {
console.log("HUB ERROR : " + err);
});
notebook.value('projectactivity', $.connection.projectactivity);
One more thing when i did console.log($.connection) into jquery.signalr*.js file i am getting the $.connection object into console.