Keyboard problem on ankidroid and answering conserved on ankiweb

Hi there

I need help fixing a code, I’m a complete beginner but I managed to do this.

The recto code and the verso code below work perfectly for my card model except for 2 problems.

On Ankiweb that works I can write what I want on the text zone and the 3 buttons “remise à 0” “langue au chat” “vérifier” do their job.
The only problem is that the answer of one card goes on the others.

On Ankidroid, of course, this problem is solved and that’s a good thing.
Only I can’t access the phone’s keyboard in my text zone.

I use ankidroid 2.20
Please, you could find the code I use for recto and verso under

The Recto code

{{Recto VO}}<br>
{{hint:Recto VF}}<br>
{{hint:Son recto}}<br>
{{hint:Image Recto}}<br>
{{hint:Indice(s) Recto VO}}<br>
{{hint:Indice(s) Recto VF}}<br><br>

<!-- Consigne visible -->
<div style="font-size: 18px; margin-bottom: 10px;">
    <strong>Avant de répondre, cliquez sur "Remise à 0" pour réinitialiser la carte.</strong>
</div><br>

<!-- Zone interactive -->
<input id="answer" type="text" placeholder="Tapez votre réponse" 
       virtualkeyboardpolicy="manual" style="width: 100%; padding: 10px; font-size: 16px;">
<button onclick="checkAnswer()">Vérifier</button>
<button onclick="revealAnswers()">Tu donnes ta langue au chat ?</button>
<button onclick="resetState()">Remise à 0</button>

<!-- Feedback et score -->
<div id="feedback"></div>
<div id="score"></div>
<div id="revealed-answers" style="display: none; margin-top: 10px;"></div>

<script>
// Initialisation des variables
let correctAnswersFound = 0;
const totalAnswers = [
    "{{Verso VO}}", 
    "{{Verso VO 1}}", 
    "{{Verso VO 2}}",
    "{{Verso VO 3}}",
    "{{Verso VF}}", 
    "{{Verso VF 1}}", 
    "{{Verso VF 2}}", 
    "{{Verso VF 3}}"
].filter(answer => answer.trim() !== ""); // Éliminer les champs vides
const foundAnswers = new Set();
const attemptedAnswers = [];

// Fonction pour réinitialiser l'état
function resetState() {
    correctAnswersFound = 0;
    foundAnswers.clear();
    attemptedAnswers.length = 0;
    document.getElementById("feedback").innerHTML = "";
    document.getElementById("score").innerHTML = "";
    document.getElementById("revealed-answers").style.display = "none";
    document.getElementById("revealed-answers").innerHTML = "";
    const inputField = document.getElementById("answer");
    inputField.value = "";  // Vide le champ de saisie
    inputField.focus();     // Ajoute le focus pour mobile
    triggerVirtualKeyboard(inputField);
}

// Fonction pour forcer l'ouverture du clavier virtuel
function triggerVirtualKeyboard(inputField) {
    if ("virtualKeyboard" in navigator) {
        navigator.virtualKeyboard.show();
    } else {
        console.warn("Clavier virtuel non pris en charge sur cet appareil.");
    }
}

// Gestion de l'affichage correct du clavier virtuel à l'initialisation
document.addEventListener("DOMContentLoaded", () => {
    const inputField = document.getElementById("answer");
    resetState();
    triggerVirtualKeyboard(inputField);
    inputField.addEventListener("focus", () => {
        triggerVirtualKeyboard(inputField);
    });
});

// Vérification de la réponse
function checkAnswer() {
    const userAnswer = document.getElementById("answer").value.trim();
    const feedback = document.getElementById("feedback");
    const score = document.getElementById("score");

    if (userAnswer) {
        attemptedAnswers.push(userAnswer); // Stocke toutes les réponses
    }

    if (totalAnswers.includes(userAnswer)) {
        if (!foundAnswers.has(userAnswer)) {
            foundAnswers.add(userAnswer);
            correctAnswersFound++;
            feedback.innerHTML = "Bonne réponse !";
            feedback.style.color = "green";
        } else {
            feedback.innerHTML = "Vous avez déjà trouvé cette réponse.";
            feedback.style.color = "orange";
        }
    } else {
        feedback.innerHTML = "Mauvaise réponse. Essayez encore.";
        feedback.style.color = "red";
    }

    score.innerHTML = `Vous avez trouvé ${correctAnswersFound} réponse(s) sur ${totalAnswers.length}.`;

    if (correctAnswersFound === totalAnswers.length) {
        revealCard();
    }
}

// Révéler les réponses
function revealAnswers() {
    const revealedAnswersDiv = document.getElementById("revealed-answers");
    revealedAnswersDiv.innerHTML = `<strong>Les réponses possibles étaient :</strong><br>`;
    
    totalAnswers.forEach(answer => {
        if (foundAnswers.has(answer)) {
            revealedAnswersDiv.innerHTML += `<span style="color: green;">✔ ${answer}</span><br>`;
        } else {
            revealedAnswersDiv.innerHTML += `<span>${answer}</span><br>`;
        }
    });

    const incorrectAnswers = attemptedAnswers.filter(
        answer => !totalAnswers.includes(answer)
    );
    if (incorrectAnswers.length > 0) {
        revealedAnswersDiv.innerHTML += `<strong>Vos réponses incorrectes :</strong><br>`;
        incorrectAnswers.forEach(answer => {
            revealedAnswersDiv.innerHTML += `<span style="color: red;">✘ ${answer}</span><br>`;
        });
    }

    revealedAnswersDiv.style.display = "block";
}

// Message de confirmation lorsque toutes les réponses sont trouvées
function revealCard() {
    const feedback = document.getElementById("feedback");
    feedback.innerHTML = "Toutes les réponses ont été trouvées ! Cliquez sur 'Afficher les réponses' pour continuer et pour plus de détails.";
    feedback.style.color = "blue";
}
</script>

The verso code`

{{Recto VO}}<br>
{{hint:Recto VF}}<br>
{{hint:Son recto}}<br>
{{hint:Image Recto}}

<hr id="answer">

<!-- Bouton pour révéler les réponses -->
<button onclick="revealAnswers()">Tu veux voir la ou les réponse(s) ?</button><br><br>

<!-- Révélation des réponses -->
<div id="revealed-answers" style="display: none; margin-top: 10px;"></div>

<script>
// Initialisation des réponses
const totalAnswers = [
    "{{Verso VO}}", 
    "{{Verso VO 1}}", 
    "{{Verso VO 2}}",
    "{{Verso VO 3}}",
    "{{Verso VF}}", 
    "{{Verso VF 1}}", 
    "{{Verso VF 2}}", 
    "{{Verso VF 3}}"
].filter(answer => answer.trim() !== ""); // Éliminer les champs vides

// Fonction pour révéler les réponses
function revealAnswers() {
    const revealedAnswersDiv = document.getElementById("revealed-answers");
    revealedAnswersDiv.innerHTML = `<strong>Les réponses possibles étaient :</strong><br>`;
    
    totalAnswers.forEach(answer => {
        revealedAnswersDiv.innerHTML += `<span>${answer}</span><br>`;
    });

    revealedAnswersDiv.style.display = "block";
}
</script>

<hr id="answer">

{{hint:Son Verso}}<br>
{{hint:image verso}}<br>
{{hint:Intitulé(s) Source(s) Verso}}<br>
{{hint:Date Source Verso}}<br>
{{hint:Réponse Détaillée Source Verso}}<br>

Based on what worked for this person:

While I don’t get why both would be required, perhaps you also need to set the contenteditable attribute in addition to virtualkeyboardpolicy="manual"?

So, edit this part:

<!-- Zone interactive -->
<input id="answer" type="text" placeholder="Tapez votre réponse" 
       virtualkeyboardpolicy="manual" contenteditable style="width: 100%; padding: 10px; font-size: 16px;">

Also, to be safe, best to add a check here that the DOMContentLoaded eventListener doesn’t get added multiple times on desktop. This might already be causing some weird behaviour though I’m not sure.

// Gestion de l'affichage correct du clavier virtuel à l'initialisation
var domContentLoadedListenerAdded;
if (!domContentLoadedListenerAdded) {
  domContentLoadedListenerAdded = true;
  document.addEventListener("DOMContentLoaded", () => {
    const inputField = document.getElementById("answer");
    resetState();
    triggerVirtualKeyboard(inputField);
    inputField.addEventListener("focus", () => {
      triggerVirtualKeyboard(inputField);
    });
  });
}

Hi jhhr

Thanks,

I’m trying your way but it’s failing for both the keyboard on ankidroid and the ankiweb.

You can find the new recto code, I don’t touch the verso code because it works as I want.

If you have another solution ?

I precise I use chatgpt to help me integrate your suggestions.

Recto Code :

{{Recto VO}}<br>
{{hint:Recto VF}}<br>
{{hint:Son recto}}<br>
{{hint:Image Recto}}<br>
{{hint:Indice(s) Recto VO}}<br>
{{hint:Indice(s) Recto VF}}<br><br>

<!-- Consigne visible -->
<div style="font-size: 18px; margin-bottom: 10px;">
    <strong>Avant de répondre, cliquez sur "Remise à 0" pour réinitialiser la carte.</strong>
</div><br>

<!-- Zone interactive -->
<input id="answer" type="text" placeholder="Tapez votre réponse" 
       virtualkeyboardpolicy="manual" contenteditable style="width: 100%; padding: 10px; font-size: 16px;">
<button onclick="checkAnswer()">Vérifier</button>
<button onclick="revealAnswers()">Tu donnes ta langue au chat ?</button>
<button onclick="resetState()">Remise à 0</button>

<!-- Feedback et score -->
<div id="feedback"></div>
<div id="score"></div>
<div id="revealed-answers" style="display: none; margin-top: 10px;"></div>

<script>
// Initialisation des variables
let correctAnswersFound = 0;
const totalAnswers = [
    "{{Verso VO}}", 
    "{{Verso VO 1}}", 
    "{{Verso VO 2}}",
    "{{Verso VO 3}}",
    "{{Verso VF}}", 
    "{{Verso VF 1}}", 
    "{{Verso VF 2}}", 
    "{{Verso VF 3}}"
].filter(answer => answer.trim() !== ""); // Éliminer les champs vides
const foundAnswers = new Set();
const attemptedAnswers = [];

// Réinitialisation complète des variables et du DOM
function resetState() {
    correctAnswersFound = 0;
    foundAnswers.clear();
    attemptedAnswers.length = 0;
    document.getElementById("feedback").innerHTML = "";
    document.getElementById("score").innerHTML = "";
    document.getElementById("revealed-answers").style.display = "none";
    document.getElementById("revealed-answers").innerHTML = "";
    const inputField = document.getElementById("answer");
    inputField.value = ""; // Vide le champ de saisie
    inputField.focus(); // Focus automatique
    triggerVirtualKeyboard(inputField);
}

// Inclusion directe de la suggestion du forum pour le clavier virtuel
function triggerVirtualKeyboard(inputField) {
    if ("virtualKeyboard" in navigator) {
        navigator.virtualKeyboard.show();
    } else {
        console.warn("Clavier virtuel non pris en charge sur cet appareil.");
    }
}

// Inclusion de la gestion sécurisée pour éviter les doublons
var domContentLoadedListenerAdded;
if (!domContentLoadedListenerAdded) {
    domContentLoadedListenerAdded = true;
    document.addEventListener("DOMContentLoaded", () => {
        const inputField = document.getElementById("answer");
        resetState();
        triggerVirtualKeyboard(inputField); // Ouvre le clavier virtuel
        inputField.addEventListener("focus", () => {
            triggerVirtualKeyboard(inputField);
        });
    });
}

// Vérification des réponses
function checkAnswer() {
    const userAnswer = document.getElementById("answer").value.trim();
    const feedback = document.getElementById("feedback");
    const score = document.getElementById("score");

    if (userAnswer) {
        attemptedAnswers.push(userAnswer);
    }

    if (totalAnswers.includes(userAnswer)) {
        if (!foundAnswers.has(userAnswer)) {
            foundAnswers.add(userAnswer);
            correctAnswersFound++;
            feedback.innerHTML = "Bonne réponse !";
            feedback.style.color = "green";
        } else {
            feedback.innerHTML = "Vous avez déjà trouvé cette réponse.";
            feedback.style.color = "orange";
        }
    } else {
        feedback.innerHTML = "Mauvaise réponse. Essayez encore.";
        feedback.style.color = "red";
    }

    score.innerHTML = `Vous avez trouvé ${correctAnswersFound} réponse(s) sur ${totalAnswers.length}.`;

    if (correctAnswersFound === totalAnswers.length) {
        revealCard();
    }
}

// Révélation des réponses
function revealAnswers() {
    const revealedAnswersDiv = document.getElementById("revealed-answers");
    revealedAnswersDiv.innerHTML = `<strong>Les réponses possibles étaient :</strong><br>`;
    
    totalAnswers.forEach(answer => {
        if (foundAnswers.has(answer)) {
            revealedAnswersDiv.innerHTML += `<span style="color: green;">✔ ${answer}</span><br>`;
        } else {
            revealedAnswersDiv.innerHTML += `<span>${answer}</span><br>`;
        }
    });

    const incorrectAnswers = attemptedAnswers.filter(
        answer => !totalAnswers.includes(answer)
    );
    if (incorrectAnswers.length > 0) {
        revealedAnswersDiv.innerHTML += `<strong>Vos réponses incorrectes :</strong><br>`;
        incorrectAnswers.forEach(answer => {
            revealedAnswersDiv.innerHTML += `<span style="color: red;">✘ ${answer}</span><br>`;
        });
    }

    revealedAnswersDiv.style.display = "block";
}

// Confirmation pour les réponses trouvées
function revealCard() {
    const feedback = document.getElementById("feedback");
    feedback.innerHTML = "Toutes les réponses ont été trouvées ! Cliquez sur 'Afficher les réponses' pour les détails.";
    feedback.style.color = "blue";
}
</script>

While testing this, I found out that the keyboard appears in approximately 90% … don’t know why this is so, but the solution is sufficient for me, if the keyboard doesn’t appear, I’m going to activate it manually.

Hi FrankJH,

Interesting how it works for you to manually activate the keyboard ?

Are you creating a button for this?

Because when I select my text zone nothing happens…

I didn’t actually test the code yet either. Now that I did, I did notice that there’s an error happening but I couldn’t spot what causes it. This happens on both desktop and AnkiDroid. Maybe it’s preventing the virtual keyboard from appearing?

Also, something I didn’t notice before but there’s usages of const and let on the top level which will crash on desktop. Doesn’t matter on AnkiDroid or AnkiWeb so could just leave these be if you never review on desktop.

// Initialisation des variables
let correctAnswersFound = 0;
const totalAnswers = [
    "{{Verso VO}}", 
    "{{Verso VO 1}}", 
    "{{Verso VO 2}}",
    "{{Verso VO 3}}",
    "{{Verso VF}}", 
    "{{Verso VF 1}}", 
    "{{Verso VF 2}}", 
    "{{Verso VF 3}}"
].filter(answer => answer.trim() !== ""); // Éliminer les champs vides
const foundAnswers = new Set();
const attemptedAnswers = [];

Should be:

// Initialisation des variables
var correctAnswersFound = 0;
var totalAnswers = [
    "{{Verso VO}}", 
    "{{Verso VO 1}}", 
    "{{Verso VO 2}}",
    "{{Verso VO 3}}",
    "{{Verso VF}}", 
    "{{Verso VF 1}}", 
    "{{Verso VF 2}}", 
    "{{Verso VF 3}}"
].filter(answer => answer.trim() !== ""); // Éliminer les champs vides
var foundAnswers = new Set();
var attemptedAnswers = [];

Hi Hanavas,

my goal was to create a Bootstrap design for my cards, in particular, I wanted to create my own input field with a self-defined comparison

But I ran into a lot of “quirks” that were very time-consuming, so I decided to put it aside and come back to it later.

I would really like to share my code with you, but unfortunately, it became confusing and mixed with all my trials. So I summarized the main points below,
I hope it’ll help you a little.

Here is my input field:

<div class="d-flex justify-content-center align-items-center section" id="inputsection" style="height: 100px">
  <div class="input-group mb-3 input-group-sm overflow-hidden w-50 mx-auto">
    <input virtualkeyboardpolicy="manual" contenteditable type="text" class="form-control hide-focus px-3"
      placeholder="...." aria-label="Username" style="height: 35px; font-size: 20px; padding-left: 10px;"
      tabindex="1" />
  </div>
</div>

As mentioned, my input field appears at 90% probability … if it appears not, I simply tap with my input pen into the input field to activate it, that’s what I meant with “manually” …

Maybe there’s one point which is interesting for you. After hours of trying and consulting an AI, I found that what is listed below … I found a strange behavior which lead to this measures. I worked on it a month ago, and I’m not sure what exactly assures that the keyboard appears.

Sorry again for not presenting the whole code here, I hope this will help you a little.

<script>
  // We stated a different behavior between Ankidroid and the desktop application.
  // It seems that Ankidroid has some specific behavior or configuration that affects the way
  // let and var are handled. In general, let and var have different scoping rules.
  // When we declare a variable using var, it is hoisted to the top of its scope, which means
  // that it is moved to the top of the nearest function or global scope. This hoisting behavior
  // allows us to use the variable before it is declared, but it can sometimes lead to unexpected
  // behavior if not used carefully.
  // However, it's possible that Ankidroid's JavaScript engine or environment has some particularities
  // that make var behave differently than expected. It's also possible that Ankidroid's code or
  // plugins are using some kind of JavaScript transpiler or compiler that modifies the behavior
  // of var and let.
  var userAgent = navigator.userAgent;
  var isAndroid = userAgent.indexOf("Android") !== -1;

  if (isAndroid) {
    // Get the input field element
    const inputField = document.querySelector("input.form-control");

    // Set the focus on the input field
    inputField.focus();

    // Programmatically trigger the keyboard to appear by simulating a key press event
    inputField.dispatchEvent(new KeyboardEvent("keydown", { key: "a" }));
    requestAnimationFrame(() => {
      console.log("**** requestAnimationFrame ****");
      inputField.focus();
    });
    document.addEventListener("click", () => {
      if ("virtualKeyboard" in navigator) {
        console.log("**** focus ****");
        navigator.virtualKeyboard.show();
      }
    });
    inputField.addEventListener("focus", () => {
      if ("virtualKeyboard" in navigator) {
        console.log("**** focus ****");
        navigator.virtualKeyboard.show();
      }
    });
    console.log(document.activeElement);
    // Assign an event handler to the input field
    inputField.addEventListener("keyup", (event) => {
      // Handle the key press event
      console.log(`Key pressed => ${event.key}`);
      if (event.keyCode === 13) {
        // Handle the Return key press
        console.log("Return key pressed!");
        Persistence.setItem("typedAnswer", inputField.value.trim());
        Persistence.setItem(
          "languageCode",
          document.getElementById("lang").textContent.trim()
        );
        Persistence.setItem(
          "correctAnswer",
          document.getElementById("translation").textContent.trim()
        );
        flipToBack();
      }
    });

....

Hello both of you,

I’m trying all your recommendations and it’s working perfectly now for the ankiweb problem so finally I can start and use the ankiweb service for my revision with this model.

Changes made :

"New entry zone :

the “<input” field is styled with Bootstrap, as suggested, for a better layout and robust display.

Dimensions and styles are adapted to ensure it is visible and accessible.

Const and let replaced with var to avoid problems on Anki Deskop.

Added a DOMContentLoaded event to ensure functions are ready to use.

Virtual keyboard:
Explicit management of virtual keyboard display by calling navigator.virtualKeyboard.show().

On the other hand, the ankidroid problem is not solved even if I use the same template as you FrankJH.

It’s a shame, I prefer to work on my phone rather than my computer…

I will continu to find a solution.

The new recto code :

{{Recto VO}}<br>
{{hint:Recto VF}}<br>
{{hint:Son recto}}<br>
{{hint:Image Recto}}<br>
{{hint:Indice(s) Recto VO}}<br>
{{hint:Indice(s) Recto VF}}<br><br>

<!-- Consigne visible -->
<div style="font-size: 18px; margin-bottom: 5px;">
    <strong>Avant de répondre, cliquez sur "Remise à 0" pour réinitialiser la carte.</strong>
</div><br>

<!-- Zone interactive -->
<div class="d-flex justify-content-center align-items-center section" id="inputsection" style="height: 100px;">
    <div class="input-group mb-3 input-group-sm overflow-hidden w-50 mx-auto">
        <input virtualkeyboardpolicy="manual" contenteditable type="text" id="answer" class="form-control hide-focus px-3"
            placeholder="Tapez votre réponse ici..." aria-label="Réponse" 
            style="height: 35px; font-size: 20px; padding-left: 10px;" tabindex="1" />
    </div>
</div>

<!-- Boutons -->
<div class="d-flex justify-content-center align-items-center mt-3">
    <button onclick="checkAnswer()" style="margin-right: 10px;">Vérifier</button>
    <button onclick="revealAnswers()" style="margin-right: 10px;">Tu donnes ta langue au chat ?</button>
    <button onclick="resetState()">Remise à 0</button>
</div>

<!-- Feedback et score -->
<div id="feedback" style="margin-top: 5px;"></div>
<div id="score" style="margin-top: 5px;"></div>
<div id="revealed-answers" style="display: none; margin-top: 5px;"></div>

<script>
// Initialisation des variables
var correctAnswersFound = 0;
var totalAnswers = [
    "{{Verso VO}}", 
    "{{Verso VO 1}}", 
    "{{Verso VO 2}}",
    "{{Verso VO 3}}",
    "{{Verso VF}}", 
    "{{Verso VF 1}}", 
    "{{Verso VF 2}}", 
    "{{Verso VF 3}}"
].filter(answer => answer.trim() !== ""); // Éliminer les champs vides
var foundAnswers = new Set();
var attemptedAnswers = [];

// Réinitialisation complète des variables et du DOM
function resetState() {
    correctAnswersFound = 0;
    foundAnswers.clear();
    attemptedAnswers.length = 0;
    document.getElementById("feedback").innerHTML = "";
    document.getElementById("score").innerHTML = "";
    document.getElementById("revealed-answers").style.display = "none";
    document.getElementById("revealed-answers").innerHTML = "";
    const inputField = document.getElementById("answer");
    inputField.value = ""; // Vide le champ de saisie
    inputField.focus(); // Focus automatique
    triggerVirtualKeyboard(inputField);
}

// Gestion du clavier virtuel
function triggerVirtualKeyboard(inputField) {
    if ("virtualKeyboard" in navigator) {
        navigator.virtualKeyboard.show();
    } else {
        console.warn("Clavier virtuel non pris en charge sur cet appareil.");
    }
}

// Inclure un événement DOMContentLoaded pour garantir que tout est prêt
document.addEventListener("DOMContentLoaded", () => {
    const inputField = document.getElementById("answer");
    resetState();
    inputField.addEventListener("focus", () => {
        triggerVirtualKeyboard(inputField);
    });
});

// Vérification des réponses
function checkAnswer() {
    const userAnswer = document.getElementById("answer").value.trim();
    const feedback = document.getElementById("feedback");
    const score = document.getElementById("score");

    if (userAnswer) {
        attemptedAnswers.push(userAnswer);
    }

    if (totalAnswers.includes(userAnswer)) {
        if (!foundAnswers.has(userAnswer)) {
            foundAnswers.add(userAnswer);
            correctAnswersFound++;
            feedback.innerHTML = "Bonne réponse !";
            feedback.style.color = "green";
        } else {
            feedback.innerHTML = "Vous avez déjà trouvé cette réponse.";
            feedback.style.color = "orange";
        }
    } else {
        feedback.innerHTML = "Mauvaise réponse. Essayez encore.";
        feedback.style.color = "red";
    }

    score.innerHTML = `Vous avez trouvé ${correctAnswersFound} réponse(s) sur ${totalAnswers.length}.`;

    if (correctAnswersFound === totalAnswers.length) {
        revealCard();
    }
}

// Révélation des réponses
function revealAnswers() {
    const revealedAnswersDiv = document.getElementById("revealed-answers");
    revealedAnswersDiv.innerHTML = `<strong>Les réponses possibles étaient :</strong><br>`;
    
    totalAnswers.forEach(answer => {
        if (foundAnswers.has(answer)) {
            revealedAnswersDiv.innerHTML += `<span style="color: green;">✔ ${answer}</span><br>`;
        } else {
            revealedAnswersDiv.innerHTML += `<span>${answer}</span><br>`;
        }
    });

    const incorrectAnswers = attemptedAnswers.filter(
        answer => !totalAnswers.includes(answer)
    );
    if (incorrectAnswers.length > 0) {
        revealedAnswersDiv.innerHTML += `<strong>Vos réponses incorrectes :</strong><br>`;
        incorrectAnswers.forEach(answer => {
            revealedAnswersDiv.innerHTML += `<span style="color: red;">✘ ${answer}</span><br>`;
        });
    }

    revealedAnswersDiv.style.display = "block";
}

// Confirmation pour les réponses trouvées
function revealCard() {
    const feedback = document.getElementById("feedback");
    feedback.innerHTML = "Toutes les réponses ont été trouvées ! Cliquez sur 'Afficher les réponses' pour les détails.";
    feedback.style.color = "blue";
}
</script>

Link
“The input box cannot call out the phone’s virtual keyboard”

Did you check if Settings > Advanced > Type answer into the card is turned on?

That’s the solution

For me I have to select one of the tree buttons “Vérifier” “Tu donnes ta langue au chat ?” or the one I use the most “Remise à 0”

And the keyboard appears all the time.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.