Install script tag
This installation method is recommended only for websites that are not able to utilise the modern web apps method.
It is not recommended or supported to install the tag with a tag manager such as Google Tag Manager.
Installing the tag
Install the below script tag on the line above the </head>
tag in your site HTML.
The complete script tag is specific to your Seeka account/brand and can be retrieved from your Seeka app. Once added to your HTML the tag can be interacted with.
Interacting with the tag
After the tag has been installed, the Browser SDK can be interacted with.
See the method reference for a list of available methods.
Version tags
A specific version of the browser SDK can be specified by adding a query string parameter vo
to your script tag URL.
Available versions:
latest
- Latest stable releasealpha
- Latest preview/development releaseX.Y.Z
- Specific version
To use the latest preview release, your script tag should look like this:
<script>
// ... script tag copied from "Installing the tag" step omitted
SeekaInstall(
{
"extraParams": "&vo=alpha",
"instances":[
// ... instances omitted
]
}
);
</script>