Javascript
[Javascript] 모바일에서만 전화 연결
- 2026.07.30 15:11:14
|
[!]Javascript[/!]
// tel mobile
document.addEventListener('DOMContentLoaded', function () { const isMobile = /Android|iPhone|iPad|iPod/i.test(navigator.userAgent); if (!isMobile) return; document.querySelectorAll('.mo_tel').forEach(function (el) { const tel = el.dataset.tel?.replace(/[^0-9+]/g, ''); if (tel) { el.setAttribute('href', 'tel:' + tel); } }); }); |
