For a new interface on our application I decided that it was necessary to forego websockets and choose comet for its much-wider support. I realized there are several techniques, and I need to ensure I choose the right one.
The question: Does the AJAX polling method release chunked data as soon as it's received or wait until the request closes?
If not, is there a way to use the iFrame technique and eliminate the browser spinner of death?
Thanks!