Online Assistent
info
The required license code will be provided by our onboarding team.
Quick start
How it works
- Enter license code
- Copy HTML
- Insert HTML snippet where the online assistant should appear on the website
Lizenzcode: | (Beispiel: LL-189189189-1234-1234) |
<script src="https://offerio.meister1.com/init.js" type="text/javascript"></script>
<div id="meister1_MEIN_LIZENZCODE"></div>
<script type="text/javascript">
const licenceCode = "MEIN_LIZENZCODE";
const options = {
selector: "#meister1_MEIN_LIZENZCODE"
};
Lokalleads.init(licenceCode, options);
</script>
In detail
Website integration explained in detail.
Script Import
First, the script containing the application is imported. This can be inserted into the <head>
or <body>
of the HTML document.
<script
src="https://offerio.lokalleads.de/init.js"
type="text/javascript"
></script>
HTML Container
An empty HTML tag must be inserted at the position where the online wizard is to appear. The id
attribute can be freely selected.
<div id="meister1"></div>
Initialization
The wizard can now be initialized.
caution
If the id
in the HTML container has been changed, the selector
must also be adjusted accordingly.
<script type="text/javascript">
const licenceCode = "LL-XYZ123456789";
const options = {
selector: "#meister1"
}
Lokalleads.init(licenceCode, options);
</script>