PDA

View Full Version : A small thing I am hearing about.


werehere
Wed 3rd May '00, 1:14am
This is from one of my moderators that summed it up pretty well I guess:


I have notice another thing I find annoying, but not sure that there's anything to be done about it. When doing a Post Reply, the focus doesn't start out in the UserName field, the way it used to be. Then, it was a simple matter of tabbing a few times to get to the message field. Now, the focus starts way up at the first link in the browser window, necessitating MANY tabs to get to the message field.


I have heard this a couple of times actually, and noticed myself recently, so I thought I would post it:)

John
Wed 3rd May '00, 1:41am
Thanks for that - I think that it is a Javascript issue, so could be address using the templates. I will look into what code needs to be added.

John

werehere
Wed 3rd May '00, 1:44am
< body onLoad="setlang()" >

Inside setlang(), it sets the focus to the input textfield of the forum,

------------------------------------
function setlang() {
document.f.q.focus();
//where f is the form's name, and q is the textfield's name

//other weird looking cookie stuff here, blah blah blah
} //close function



This is what another moderator suggested.