NOTIFICATION.php


Quell Code


<!-- Learn about this code on MDN: https://developer.mozilla.org/de/docs/Web/API/notification -->

<button onclick="notifyMe()">Notify me!</button>

<script>
  var title ="Dein Titel und er kann auch sehr laaaaaaaang sein. ";
var len = title.length;
var position = 0;
scrolltitle();
function scrolltitle() {
    rese=setTimeout(function(){ scrolltitle()},200);
    document.title = title.substring(position, len) + title.substring(0, position);
    position++;
    if (position > len) position = 0;
   
}

  function notifyMe() {
 
  // Let's check if the browser supports notifications
  if (!("Notification" in window)) {
    alert("This browser does not support desktop notification");
  }

  // Let's check whether notification permissions have alredy been granted
  else if (Notification.permission === "granted") {
    // If it's okay let's create a notification
        alert('erlaubt')
    var notification = new Notification("Hi there!");
  }

  // Otherwise, we need to ask the user for permission
  else if (Notification.permission !== 'denied') {
  alert('abgelehnt')
    Notification.requestPermission(function (permission) {
      // If the user accepts, let's create a notification
      if (permission === "granted") {
      alert('akzeptiert')
        var notification = new Notification("Hi there!");
      }
    });
  }
 
}
  
</script>
  1. <!-- Learn about this code on MDN: https://developer.mozilla.org/de/docs/Web/API/notification -->
  2. <button onclick="notifyMe()">Notify me!</button>
  3. <script>
  4. var title ="Dein Titel und er kann auch sehr laaaaaaaang sein. ";
  5. var len = title.length;
  6. var position = 0;
  7. scrolltitle();
  8. function scrolltitle() {
  9. rese=setTimeout(function(){ scrolltitle()},200);
  10. document.title = title.substring(position, len) + title.substring(0, position);
  11. position++;
  12. if (position > len) position = 0;
  13. }
  14. function notifyMe() {
  15. // Let's check if the browser supports notifications
  16. if (!("Notification" in window)) {
  17. alert("This browser does not support desktop notification");
  18. }
  19. // Let's check whether notification permissions have alredy been granted
  20. else if (Notification.permission === "granted") {
  21. // If it's okay let's create a notification
  22. alert('erlaubt')
  23. var notification = new Notification("Hi there!");
  24. }
  25. // Otherwise, we need to ask the user for permission
  26. else if (Notification.permission !== 'denied') {
  27. alert('abgelehnt')
  28. Notification.requestPermission(function (permission) {
  29. // If the user accepts, let's create a notification
  30. if (permission === "granted") {
  31. alert('akzeptiert')
  32. var notification = new Notification("Hi there!");
  33. }
  34. });
  35. }
  36. }
  37. </script>
<!-- Learn about this code on MDN: https://developer.mozilla.org/de/docs/Web/API/notification -->

<button onclick="notifyMe()">Notify me!</button>

<script>
  var title ="Dein Titel und er kann auch sehr laaaaaaaang sein. ";
var len = title.length;
var position = 0;
scrolltitle();
function scrolltitle() {
    rese=setTimeout(function(){ scrolltitle()},200);
    document.title = title.substring(position, len) + title.substring(0, position);
    position++;
    if (position > len) position = 0;
   
}

  function notifyMe() {
 
  // Let's check if the browser supports notifications
  if (!("Notification" in window)) {
    alert("This browser does not support desktop notification");
  }

  // Let's check whether notification permissions have alredy been granted
  else if (Notification.permission === "granted") {
    // If it's okay let's create a notification
        alert('erlaubt')
    var notification = new Notification("Hi there!");
  }

  // Otherwise, we need to ask the user for permission
  else if (Notification.permission !== 'denied') {
  alert('abgelehnt')
    Notification.requestPermission(function (permission) {
      // If the user accepts, let's create a notification
      if (permission === "granted") {
      alert('akzeptiert')
        var notification = new Notification("Hi there!");
      }
    });
  }
 
}
  
</script>

vConsole
17:27:54
Uncaught TypeError: Cannot read properties of null (reading 'style')
/Kurze-Scripte-und-Codeschnipsel/index.php?name=NOTIFICATION.php&ordner=Kurze-Scripte-und-Codeschnipsel:2751:53
17:27:55
500
17:27:54
WeChatLib: 0 (xxxx.xx.xx)
17:27:55
System: Unknown
17:27:55
Protocol: HTTPS
17:27:55
UA: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
17:27:55
navigationStart: 1743960473583
17:27:55
navigation: 2ms
17:27:55
dns: 118ms
17:27:55
tcp (ssl): 241ms (131ms)
17:27:55
request: 220ms
17:27:55
response: 60ms
17:27:55
domComplete (domLoaded): 1746ms (1643ms)
17:27:55
loadEvent: 15ms
17:27:55
total (DOM): 2346ms (2331ms)