For the complete documentation index, see llms.txt. This page is also available as Markdown.

๐Ÿ”Ž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.

// 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();

Last updated

Was this helpful?