Deutsch | English | Español | Français |
Italiano | 日本語 | 한국어 | Português |
Pусский | 简体中文 | 繁體中文 |
Closes a MessagePort from an existing MessageChannel.
![]() |
Syntax
MessagePort.close();Parameters
This method has no parameters.
Return value
This method does not return a value.
Standards information
Remarks
This method releases the MessagePort from its corresponding MessagePort. After calling the close method, message events will no longer be received on this port and postMessage will no longer post any messages. To continue messaging, you need to create a new MessageChannel and resend one of the ports to the other window or document.
For more info, see MessageChannel for a working messaging demo.
See also