> 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: listRemovedElements() # Method package: wixEditor # Method menu location: wixEditor --> listRemovedElements # Method Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-editor/list-removed-elements.md # Method Description: Gets a list of all removed widget elements. The `listRemovedElements()` function returns a Promise that resolves to a list of selectors of removed elements that are part of the widget with which the panel is associated, for example: `[‘title’, ‘description’]`. 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. ## Get all the removed elements ```javascript import wixEditor from 'wix-editor'; // ... wixEditor.listRemovedElements() .then(allRemovedElements => { // Code to execute with the allRemovedElements array }) // For example, allRemovedElements can be: ["#title", "#button1"] ``` ---