Streaming reconnect fails on IE9 with an exception message
"Unable to get value of the property 'cloneNode': object is null or undefined"
This happens when trying to write a tag to an iframe document when
the iframe fails to load (network error) and later on attempting to use that
tag which was never written.
In the JQuery version, reconnect happened to work as the exception was
accidentally triggered earlier by comparing the node tag name to "pre".
As the node was null, an exception was thrown, but the it was thrown early
enough to be inside a try block so it was caught and handled. This caused
reconnect to work in that version.
Streaming reconnect fails on IE9 with an exception message "Unable to get value of the property 'cloneNode': object is null or undefined"
This happens when trying to write a tag to an iframe document when
the iframe fails to load (network error) and later on attempting to use that
tag which was never written.
In the JQuery version, reconnect happened to work as the exception was accidentally triggered earlier by comparing the node tag name to "pre". As the node was null, an exception was thrown, but the it was thrown early enough to be inside a try block so it was caught and handled. This caused reconnect to work in that version.