> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/methods/off.md).

# off()

Unsubscribe from an [event](/reference/sdk/events.md). There was a previous subscription made with [on](/reference/sdk/methods/on.md).

#### Sample unsubscription code

```javascript
const modeChangedCallback = (event) => {
 //.....................................
};

sambaFrame.on('layoutModeChanged', modeChangedCallback);
//......................................................

//This will unsubscribe from the event, so the callback won't be invoked anymore
sambaFrame.off('layoutModeChanged', modeChangedCallback);
```
