$(document).ready(function() { // 전화 통화 링크 제거 if(!navigator.userAgent.match(/(iPhone|Android|BlackBerry|iPad)/)) { //this is the phone $('a[href^=tel]').click(function(e){ e.preventDefault(); }); //this is the sms $('a[href^=sms]').click(function(e){ e.preventDefault(); }); } });