Phone number links and accessibility

2 min read
16653 views

One UX challenge that used to give me pause was making phone numbers accessible in the browser while still being functional. Here’s what I mean about that. The WCAG 2.0 guidelines state:

Link underlines or some other non-color visual distinction are required (when the links are discernible to those with color vision).

Consider for a moment how we code a phone number link to function when tapped in a mobile browser:

<a href="tel:123-456-7890">123-456-7890</a>

Previously, if it didn’t make sense to show a phone number link on a non-mobile screen we’d style it to resemble plain text, then display the link styling for mobile screens. But that solution goes against the above WCAG guidelines. And screen readers will read the <a> element for the phone number as a link even if it isn’t visually styled like one.

You also want to avoid creating two separate HTML elements and using conditional CSS to display the appropriate one based on viewport. If CSS is disabled in the browser (a point that can be debated regarding the viability of accessibility testing semantic structure), both phone numbers will be displayed.

So, what can be done?

Swap out the element

We can replace elements in the DOM with JavaScript. In this scenario, if we’ve already created a <span> for a phone number, we can dynamically replace it with an <a> when we choose.

So, given:

<span class="number">123-456-7890</span>

Let’s set up some variables for our existing phone number element and the new element we’ll use to replace it:

const num = document.querySelector('.number'),
      newEl = document.createElement('a');

We’ll be using an event listener to check for when the page loads, and also getting the screen width from the client:

const num = document.querySelector('.number'),
      newEl = document.createElement('a');

window.addEventListener('load', () => {
  viewportWidth = window.innerWidth || document.documentElement.clientWidth;

}, false);

Using replaceChild()

Now that we have our basic shell of a function, we can add values for our new element. After that we can call replaceChild() method to replace the <span> element with <a> when the viewport/screen reaches a specific width:

const num = document.querySelector('.number'),
      newEl = document.createElement('a');

window.addEventListener('resize', () => {
  viewportWidth = window.innerWidth || document.documentElement.clientWidth;

  newEl.setAttribute('href', 'tel:' + num.innerHTML);
  newEl.innerHTML = num.innerHTML;

  if (viewportWidth < 700) {
    num.parentNode.replaceChild(newEl, num);
  }
}, false);

Here’s our new pattern in action, with the element being replaced on load depending on whether the parent container is a specific size.

Now we have a solution that’s both accessible and functional when appropriate. To me this makes sense, although I’ve heard concerns with this disrupting VoIP features with non-mobile screens (e.g., Teams, Slack). If you’d like to improve upon this method or have another solution for this scenario, I’d love to see what you come up with. Happy coding!