<!--Code by khudova.design-->
<script>
setTimeout(function(){
const tElement = document.querySelector('.t-store__prod-popup__text');
if (tElement) {
const links = tElement.querySelectorAll('a');
links.forEach(link => {
if (link.href.includes("wa.me")) {
const currentUrl = window.location.href;
link.href += ' ' + currentUrl;
}
});
}
}, 500)
</script>
<!--Code by khudova.design-->
<script>
setTimeout(function(){
const tElement = document.querySelector('.ВАШ_КЛАСС');
if (tElement) {
const links = tElement.querySelectorAll('a');
links.forEach(link => {
if (link.href.includes("wa.me")) {
const currentUrl = window.location.href;
link.href += ' ' + currentUrl;
}
});
}
}, 500)
</script>
<!--Code by khudova.design-->
<script>
setTimeout(function(){
const currentUrl = window.location.href;
const links = document.querySelectorAll('a[href*="wa.me"]');
links.forEach(link => {
link.href += ' ' + currentUrl;
});
}, 500)
</script>