https://github.com/yujiosaka/socke.io-ie8-loading-example
A sample app to illustrate ie8 loading triggered by socket.io
https://github.com/yujiosaka/socke.io-ie8-loading-example
Last synced: 6 months ago
JSON representation
A sample app to illustrate ie8 loading triggered by socket.io
- Host: GitHub
- URL: https://github.com/yujiosaka/socke.io-ie8-loading-example
- Owner: yujiosaka
- Created: 2014-07-08T17:57:16.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-04T03:16:00.000Z (almost 11 years ago)
- Last Synced: 2023-04-09T11:03:50.500Z (over 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 578 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
socke.io-ie8-loading-example
=======================A sample app to illustrate ie8 loading triggered by socket.io
### Problem
IE8 loading bar keeps running while sending events from the client.
It has not occured before updating to socket.io 1.0.x.##### index.html
```
var socket = io.connect('http://192.168.100.24:4000');
socket.on('connect', function() {
i = 0;
setInterval(function() {
socket.emit('cnt', i++);
}, 1000);
});
```Instructions:
1. Change localhost to your hostname in index.html
2. Start the server (`node app.js`)
3. Access to yourhost:3000 with IE8Then:
You will see the loading bar keeps running.
