# Custom Position

{% hint style="info" %}
To use the Web SDK please [install ](https://docs.getcomplied.com/how-to-install)the snippet first.
{% endhint %}

When this is applied, it will be always visible.&#x20;

It will no longer listen to certain commands or execute some callbacks.

{% hint style="warning" %}
Affected commands: show, onopen and onclose.

Affected callbacks: onopen, onclose
{% endhint %}

### HTML

To open GetComplied modal use the following tag.&#x20;

```markup
<gc-prompt-container></gc-prompt-container>
```

Or you can add a property to any element.

```markup
<div gc-prompt-container></div>
```

To you the correct javascript implementation please check the Events section.

```javascript
getComplied.container = document.getElementById('yourElementId');
```
