スマホの場合のみtelリンクを有効にする

スマホの場合のみtelリンクを有効にするjsです。


if (navigator.userAgent.match(/(iPhone|iPad|iPod|Android)/)) {

$(function() {

$('.tel_link').each(function() {

var str = $(this).html();

if ($(this).children().is('img')) {

$(this).html($('<a>').attr('href', 'tel:' + $(this).children().attr('alt').replace(/-/g, '')).append(str + '</a>'));

} else {

$(this).html($('<a>').attr('href', 'tel:' + $(this).text().replace(/-/g, '')).append(str + '</a>'));

}

});

});

}