paul3
November 6, 2024, 10:30am
1
Hello I am looking for an Add On, which allows me to type my Anki Card (Vocabulary) answer again after I first failed. I have looked at the Anki Add On site and searched on Google and Youtube but could not find anything like this.
Keks
November 6, 2024, 11:15am
2
The card template helped me with this
If you don’t want to see the exact location of the error, this becomes a much simpler matter:
<script>
(() => {
/**
* Type-in-the-answer live feedback for Anki (vague variant)
* @author Matthias Metelka | @kleinerpirat
*/
const input = document.getElementById("typeans");
const answer = "{{Answer}}";
input.addEventListener("input", () => {
input.classList.add("typed");
input.classList.toggle(
"correct",
input.value == answer.substring(0, inpu…
Hello everyone,
I’ve recently encountered an issue with Anki’s “type answer” feature. The current default behavior is that after submitting an answer, you only find out whether your input was correct or not. However, if the answer is wrong, there’s no option to correct and re-enter it. This can be frustrating, as getting positive feedback on the correct answer is crucial for long-term memory retention.
After looking into some forum discussions, including this How to have instant type:answer fe…