is it possible pass data between two different browsers?
Asked Answered
S

2

0

I have to pass data between two different browser windows ( Eg: Chrome , Firefox ).

But the two browser windows does not have any parent window.

Assumption: Suppose if I know one browser window name , is it possible to get the data from other browser?

Its is an R&D.

Sudanic answered 4/2, 2015 at 7:35 Comment(4)
yoou mean between chrom and firefox?Antares
betwwen chrome-chrome or firefox -chrome?Irrespective
WebRTC might be helpful if you want to communicate between two separate browsers without a server.Quintal
@Irrespective & Naeem between two different browsers.Sudanic
I
3

Server Option using (node.js)

If you are open to use node.js i suggest you to take a look on Socket.io.

They have a pretty good example of how to communicate on 2 or more browser using the chat example.

Take a look on this demo

Only Client option (using webRTC)

Also if you don't wanna get mess with the server.

Take a quickly look into this post

Update

Seems like the only option we have here its WebRTC

Take a look into this 2 SO.

Can HTML5 Websockets connect 2 clients (browsers) directly without using a server? (P2P)

Do websockets allow for p2p (browser to browser) communication?

Irrespective answered 4/2, 2015 at 7:43 Comment(0)
T
0

Yes you can do the communication between two different browser using HTML5 WebSocket

Tojo answered 4/2, 2015 at 7:40 Comment(1)
Thanks for your reply . But I think websocket is used to push the data from the server to client browser . How it is possible to send the data between two browsers ?Sudanic

© 2022 - 2024 — McMap. All rights reserved.