How to auto-scroll to the hint when I press the shortcut key for it?
Are you referring to cloze hints? Or is it a custom notetype?
Anyhow, if you have an element with id=“hint”, you can scroll it into view with JS:
document.getElementById("hint").scrollIntoView()
2 Likes