> 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: getScopedWixEditor(Selector: string) # Method package: wixEditor # Method menu location: wixEditor --> getScopedWixEditor # Method Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-editor/get-scoped-wix-editor.md # Method Description: Gets the `wix-editor` module scoped of an [inner (nested) widget](https://support.wix.com/en/article/wix-blocks-creating-and-managing-widgets-within-widgets). The `getScopedWixEditor()` function lets you use `wix-editor` functions on inner (nested) widgets. It receives a selector of an inner widget and returns a promise that resolves with an object representing the scope of the inner widget. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Removes an element in an inner (nested) widget ```javascript import wixEditor from 'wix-editor'; // ... wixEditor.getScopedWixEditor("#nestedWidget1 #nestedWidget2") ////nestedWidget2 is inside nestedWidget1 .then(nestedWidget => { nestedWidget.removeElement("#title1"); //removes title1 from nestedWidget2 }); ``` ---