Skip to content

Frage zu: UND-Verknüpfung bei cookiebar.addModule-Methode #255

Answered by doishub
jochi44 asked this question in Q&A
Discussion options

You must be logged in to vote

Hey jochi44,

ich könnte mir vorstellen, dass du das in einer Kombination von addModule und issetCookie gelöst bekommst.

Versuch es mal mit folgender Vorgehensweise:

document.addEventListener("DOMContentLoaded", function() {
  cookiebar.addModule(99), loadSomething);
  cookiebar.addModule(100), loadSomething);
  cookiebar.addModule(101), loadSomething);
});

function loadSomething(){
  if(cookiebar.issetCookie(99) && cookiebar.issetCookie(100) && cookiebar.issetCookie(101)){
    // Alle drei Cookies wurden akzeptiert
  }else{
    // Einer der Cookies wurde noch nicht akzeptiert
  }
}

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by zoglo
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #47 on January 08, 2025 17:05.