SignalR connection blocked Prior to loading images with images

this is my signalr hub connection:

  chat = $.connection.chat;
  $.connection.hub.start().done(function () {
     // problem is here 
     // this part is waiting for full page load.!
  });

Why does the signalr connection wait for the completion of loading the contents of my page? It <img src='BAD SERVER'/>sometimes takes me 2 minutes to download successfully. and the connection is waiting for images to load.!

How can I fix this problem?

+1
source share
1 answer

Try the following:

chat = $.connection.chat;
$.connection.hub.start({ waitForPageLoad: false }).done(function () {
 // problem is here 
 // this part is waiting for full page load.!
});
+2
source

All Articles