I’m looking to develop a mobile web application allowing 2 people to talk to each other. To do this I’m using MVC3, jquery mobile and Signalr.
I have the basic functionality working on my machine, but when I test it on my iPhone the page shows as continually loading, I’m presuming this is due to Signalr?
Has anyone come across this and know how to rectify it or know of any other libraries like Signalr but meant for mobile devices?
Many thanks,
Mike
This is a link to a screenshot of my iphone: http://i1150.photobucket.com/albums/o618/mikeyb7fish/60c65836.jpg
You need to delay the SignalR start-up like this:
setTimeout('$.connection.hub.start()', 2000);