Last active
November 25, 2020 08:52
-
-
Save YakovSPb/b0d615ae7c631480339a0e92748582ff to your computer and use it in GitHub Desktop.
Телефон ссылка phone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Телефон ссылка phone | |
================= | |
//Fix phone link | |
function fixPhoneLink(){ | |
const phoneElements = document.querySelectorAll('.phone a'); | |
phoneElements.forEach((e)=>{ | |
let newLink = 'tel:+7' + e.textContent.replace(/-/g, "").replace(/ /g, "").slice(1) | |
e.href = newLink; | |
}) | |
} | |
fixPhoneLink() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment