The convenience of forum

Forum for things that doesn't really have anything to do with hMailServer. Such as php.ini, beer, etc etc.
Post Reply
leaderrealvn
New user
New user
Posts: 1
Joined: 2019-07-11 11:01

The convenience of forum

Post by leaderrealvn » 2019-07-12 05:08

Now that I've visited (and logged into) this forum a number of times, I've got a suggestion for improvement which some might appreciate. On the login page (which you must visit each time you post a topic or reply, if you don't save your login info), you have to click or tab to the username field to begin typing. Setting the cursor (or setting focus) to this field when the page loads would be nice, and there's a very easy method for it!

Here's one way that I've used in the past:

<script type="text/JavaScript">
function setfocus() {
document.frmLogin.username.focus();
}
</script>

Looking at the page source, I didn't see any other javascript, and don't know if you have anything against using it. Perhaps there is a PHP or HTML solution if you don't want to use JS.

Just a request for the convenience of forum users.

Post Reply