Skip to content

Instantly share code, notes, and snippets.

@YakovSPb
Last active November 25, 2020 08:52
Show Gist options
  • Save YakovSPb/b0d615ae7c631480339a0e92748582ff to your computer and use it in GitHub Desktop.
Save YakovSPb/b0d615ae7c631480339a0e92748582ff to your computer and use it in GitHub Desktop.
Телефон ссылка phone
Телефон ссылка 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