> For the complete documentation index, see [llms.txt](https://docs.8select.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.8select.io/integration/widgets/adding-widgets-after-8.sdk-was-loaded.md).

# Adding widgets after 8.SDK was loaded

If you add 8SELECT widgets asynchronous the 8.SDK has to be informed about new widgets via its API.

```javascript
// failsafe if the 8.SDK is not yet injected
if (typeof _8select === "undefined") {
  return
}
// scan DOM for new 8SELECT widgets and fill with content
_8select.initCSE();
```
