I am currently using this script to create a button on clicking which it shows me an extra field.
<div id="ID" style="display:none">{{Text}}</div>
<button class="button" type="button" onclick="
if
(document.getElementById('ID') .style.display=='none')
{document.getElementById('ID') .style.display=''}
else
{document.getElementById('ID') .style.display='none'}">
Show Answer
</button>
I 'd like to know a way to show the text not only by mouse but also by keyboard.