2014-07-11から1日間の記事一覧

* user Agent よく使うのでメモ var _agent = navigator.userAgent.toLowerCase(); ns.isAndroid = false; if( !( _agent.match('iphone') || _agent.match('ipod') || _agent.match('android') ) ){ $('body').addClass('pc'); } else if( _agent.match('an…

アプリリンクの貼り方 * iPhoneは、pc,sp共通 例: a(href="https://itunes.apple.com/jp/app/google-jian-suo/id284815942?mt=8&uo=4" target="itunes_store") * androidはidは同一だが、pcとspで切り分け 例: PC: https://play.google.com/store/apps/detai…

* youtubeのcallbackはglobalに置こう I have the answer, separate out this portion of the script and put it in the head in its own script tag. OMG, finally <scripttype="text/javascript"language="javascript">function onYouTubePlayerReady(playerid){ ytp = document.getElementById('ytplayer'); y</scripttype="text/javascript"language="javascript">…