Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Dedicated Web Workers.
The disconnect event of the SerialPort interface is fired when the port disconnects from the device.
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("disconnect", (event) => { })
ondisconnect = (event) => { }A generic Event.
The disconnect event fires when a port that was previously logically connected to the device is no longer connected.
This event bubbles up to the Serial instance that returned this interface. The event.target property refers to the SerialPort object that bubbles up.
For more information, see Event bubbling.
Here the event listener is installed on a specific SerialPort object.
port.addEventListener("disconnect", (event) => {
// notify that the port has become unavailable
});The disconnect event bubbles up to the Serial object where you can listen for any ports that become unavailable.
navigator.serial.addEventListener("disconnect", (event) => {
// notify that a port has become unavailable
// use `event.target` to refer to the unavailable port
});connect event