Thank you for showing multiple examples. All the sites I've seen just regurgitate the basic documentation that i can find on MDN.
@ahora10265 жыл бұрын
I always wondered about this. But I was too lazy to search this out. Thankfully I had turned on the bell of your channel.
@TomasMisura5 жыл бұрын
nice video tut, i have never heard about Broadcast channel API
@domaincontroller4 жыл бұрын
00:14 browser contexts, tab windows and s
@FetzenRndy5 жыл бұрын
What font and theme are you using?
@genyklemberg Жыл бұрын
awesome. I even forgot about this possibility, thankfully your video was first on my request)
@namnam47323 жыл бұрын
Hi Dcode, How to make server tells client js that some data have been changed.
@tct382 жыл бұрын
I found it very useful. Thanks
@progm61273 жыл бұрын
is it possible to send a message from one Tab(youtube page) to other Tab(Facebook)
@dcode-software3 жыл бұрын
Nah, you can't do that
@progm61273 жыл бұрын
@@dcode-software is it possible by using an Extension?
@dcode-software3 жыл бұрын
Not sure, probably not cos it'd be a security issue
@progm61273 жыл бұрын
@@dcode-software ok ...thanks sir,
@SerhiiNesterov Жыл бұрын
Thank you !
@DivijShrivastava4 жыл бұрын
Is there a way to broadcast messages through different origin? I mean if the port and host are not the same of two tabs.
@spreadItWide2 жыл бұрын
Short answer: No. From MDN: The BroadcastChannel interface represents a named channel that any browsing context of a given origin can subscribe to. It allows communication between different documents (in different windows, tabs, frames or s) of the same origin. Messages are broadcasted via a message event fired at all BroadcastChannel objects listening to the channel, except the object that sent the message.
@shubhamarora5475 жыл бұрын
Sir please make tutorial on how to print emoji in any coding language javascript , html,php using vscode editor extension.
@ahora10265 жыл бұрын
-_-
@cod99555 жыл бұрын
p
@brain-in Жыл бұрын
You can print (i think you meant console.log) in any code by using the following code in javascript var emoji = '\u{1F44D}'; //Replace the following unicode with your unicode like the following console.log(emoji);
@brain-in Жыл бұрын
Hope this help if you have any doubt about this you can ask me😄