상세 컨텐츠

본문 제목

네이버 앱에서 접근 시 알림, 구버전 브라우저 알림 처리

Work/Study

by 물빛미르 2024. 1. 12. 10:59

본문

728x90
// 네이버 앱에서 접근 시 알림처리 ===========================================
 
/**
* 오류 처리 핸들러
* @param {string} description 오류 발생 설명
* @param {string} url 오류 발생 파일 URL
* @param {integer} line 오류 발생 파일의 행 번호
*/
$.error = function ( description , file , line , col , e )
{
  // 네이버 앱 브라우저 오류 예외 처리
  if ( description.match(/checkDomStatus|naverAppDic/) && navigator.userAgent.match(/naver/i) )
    return alert ( '실행중인 네이버 앱의 버전이 낮아 정상적인 동작이 불가능합니다.' ) ;
} ;
window.onerror = $.error ;
 
// 구버전 브라우저 업데이트 알림 ===========================================
<script>
var $buoop = {required:{e:-4,f:-3,o:-3,s:-1,c:-3},insecure:true,api:2019.05 };
function $buo_f(){
var e = document.createElement("script");
document.body.appendChild(e);
};
try {document.addEventListener("DOMContentLoaded", $buo_f,false)}
catch(e){window.attachEvent("onload", $buo_f)}
</script>
728x90

'Work > Study' 카테고리의 다른 글

PHP 한글포함여부 검사  (0) 2024.01.12
크롬 자동완성 기능 제거  (1) 2024.01.12
DB 튜닝 시 체크  (0) 2024.01.12
[PHP] 날짜계산 정리  (0) 2024.01.12
register_globals 옵션 off 시 일괄 처리  (0) 2024.01.11

관련글 더보기