Programming/HTML (1) 썸네일형 리스트형 HTML5 Notifications API var notificationsEnabled = false; function initNotifications(){ if (window.Notification){ Notification.requestPermission(function(permission) { if (permission === 'granted'){ notificationsEnabled = true; } else { alert("알림 거절"); } }); }else{ alert("브라우저가 AIP를 지원하지 않습니다.I"); } } function showNotification() { if (notificationsEnabled) { var notification = new Notification('SSaurel', { body : '버튼클릭.. 이전 1 다음