HTML <img src="tel.png" alt="0123-45-6789" data-tel="0123-45-6789"/> (<span data-tel="0123-45-6789">0123-45-6789</span>とかでもOK) JavaScript $(document).ready(function () { // 実際は初回とウィンドウリサイズ時に実行(※1) if ($(window).width() <= 480) { $("[data-tel]").each(function(){ if ($(this).parent().get(0).tagName.toLowerCase() != "a") { var tel = $(this).attr("data-tel"); $(this).wrap("<a href=" + 'tel:' + tel +