> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: isRemoved(selector: string) # Method package: wixEditor # Method menu location: wixEditor --> isRemoved # Method Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-editor/is-removed.md # Method Description: Checks if an element is removed from the widget. The `isRemoved()` function returns a Promise that resolves to `true` if the element is removed. The element selector is a string with the hash symbol (`#`) followed by the ID of the item you want to select (e.g. `"#myElement"`). To use this function on an inner (nested) widget, use [`getScopedWixEditor()`](#getScopedWixEditor). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Check if an element is removed ```javascript import wixEditor from 'wix-editor'; // ... wixEditor.isRemoved('#title') .then(isRemoved => { // Your code that uses the 'isRemoved' value goes here }); ``` ---