I need this field to be focused when the user opens the page. I don\'t know if it changes anything but it\'s inside a modal window I load from a PHP file.
I
Using JavaScript, you can achieve this:
document.onload = function() { document.getElementById("question-box-0").focus(); }