/* カスタマイズ用のJavaScriptコードをここに記述してください */ function blurItem( item ){ // IE if(isIE()){ item.blur(); }else{ // do nothing } } function isIE() { ua = navigator.userAgent; //console.log(ua); /* MSIE used to detect old browsers and Trident used to newer ones*/ var is_ie = ua.indexOf("MSIE ") > -1 || ua.indexOf("Trident/") > -1|| ua.indexOf("Edge") > -1; return is_ie; }