Jquery and Socket.io conflict

373 Views Asked by At

I'm trying to use ImpactJS, a JS framework. I want to add socket.io functions. As soon as I add socket.io there is an error

Uncaught ReferenceError: sock is not defined jquery-1.7.1.min.js:4

My class where I use soket.io :here (end of the file)

My index.html : here

I don't understand why I can't use both. Thx for your help.

2

There are 2 best solutions below

0
On BEST ANSWER

I find the problem. Socket is loaded in index.html and not in Player.js.

Map editor can't load socket. To solve this problem in Player.js :

if (typeof sock != 'undefined')
sock.emit('update', this.padmap, this.id);
2
On

Index line 35

var sock = io.connect('http://localhost:3000');

Class line 134

sock.emit('update', this.padmap, this.id);

sock is not in the window scope so this will not work. Change var sock to window.sock and sock.emit to window.sock.emit.

However using global variables are frowned upon. If you're using global variables you're doing something wrong.