Great book, I am enjoying it immensely.
In the dig.
js the following code does not work:
$(document).bind('connect', function (ev, data) {
var conn = new Strophe.Connection(
"http://localhost:5280/xmpp-httpbind");
//'http://bosh.metajack.im:5280/xmpp-httpbind')
I had to remove "http://localhost:5280/xmpp-httpbind" and make it look like this:
$(document).bind('connect', function (ev, data) {
var conn = new Strophe.Connection(
'http://bosh.metajack.im:5280/xmpp-httpbind')
It works now.
I am a newbie, did I get it right or am I missing something?