Skip to content

Instantly share code, notes, and snippets.

@denisz
Created May 20, 2019 13:43
Show Gist options
  • Save denisz/cd0166374143cf5353fc5ff696b5c5b2 to your computer and use it in GitHub Desktop.
Save denisz/cd0166374143cf5353fc5ff696b5c5b2 to your computer and use it in GitHub Desktop.
<div class="grid tickets" id="tickets">
а вот это ссылка
<a onclick="openBuyPopup()" href="#tickets">Купить билет</a>
</div>
<script>
function openBuyPopup() {
var opt = { id: 453795, forgetOriginalHash: true };
radario.openBuyPopup(opt);
}
window.onload = function() {
if (location.hash === '#tickets') {
openBuyPopup();
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment