var device = 'desktop', _ua = window.navigator.userAgent.toLowerCase(); if(_ua.indexOf('iphone') > -1) { device = 'sp'; } else if(_ua.indexOf('ipad') > 0) { device = 'tablet'; } else if (_ua.indexOf('android') > -1) { if (_ua.indexOf('mobile') > -1) { device = 'sp'; } else { device = 'tablet'; } } $(function(){ if (device != 'desktop') { // SP版のURLはhtml側に記述 var _iframe = $('#wrapper_byoinserch > iframe') if (_iframe.size()) { var _src = _iframe.attr('data-src-sp'); var _height = (device == 'tablet')? _iframe.attr('data-height-tablet'): _iframe.attr('data-height-sp'); _iframe.attr('src', _src).attr('height', _height); } } });