Can you transport a Javascript object to server and receive it in the same state?

Posted by zorglub76 on Stack Overflow See other posts from Stack Overflow or by zorglub76
Published on 2010-05-10T12:09:26Z Indexed on 2010/05/10 12:14 UTC
Read the original article Hit count: 211

I'm considering creating a simple remote debugging application for Javascript. Actually, I want to provide an object to Firebug Lite and let it do all the job.

So, can I get an object from one page, serialize it, send it to server and then to another browser and finally see the same results in Firebug Lite (on that other client) as I would see on the first browser (with doing "console.dir(obj)")? Is it possible to do?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about debugging