Тестовы (моды)

Как открыть попап по ссылке в Тильде?

<script>
if (window.location.hash !== "") {
    document.write("<a href='" + window.location.hash + "' style='display:none'></a>");
    document.addEventListener("DOMContentLoaded", function (event) {
        setTimeout(function () {
            document.querySelector("a[href='" + window.location.hash + "']").click();
        }, 500);
    });
}
</script>