JSFiddle - React, Tailwind, and code Playground

by tchalvakspam

HTML

<a href='tel:18885675678'>1-888-576-5768</a><br>
<a href='tel:18888888888' class='active'>1-888-888-8888</a><br>
<a href='tel:18885675678' class='active'>1-888-576-5768</a><br>

JavaScript

if (!jQuery.browser.mobile) { // For non-mobile browsers
    jQuery('body').on('click', 'a[href^="tel:"].active', function() {
            alert('triggered');
            jQuery(this).attr('href', 
                jQuery(this).attr('href').replace(/^tel:/, 'callto:'));
    });
}