focus() problem with Netscape <input onBlur>

C

CES

All,



I'm having a problem returning focus back to an input field in Netscape. The
code works in IE and Opera but not in netscape6+.



Basically I have a function that is called upon exiting a form field, if the
value validates properly it returns true and calls another function, if it
doesn't validate the field it returns false and I want to give focus back to
the sender and highlight all of the text in the field.



The problem is that while IE and opera return the curser back to the field -
Netscape ignores the focus statement (I still can't find any examples as to
how to return the curser and highlight the text in the field).



Any suggestions as to what I'm doing wrong will be appreciated.

CES



function fExitField(sender){

returnedValue = fValidateData(sender);

if(returnedValue == true){ //

fRemoveAsterisk(sender);

}

if(returnedValue == false){

document.forms[fGetFormName(sender)].elements['id_'
+ sender].focus(); // FYI I have multiple forms an the page -
fGetFormName(sender) returns the name of the form that contains the element.

alert("Improper Format");

}

}



This is an example of my tag structure:

<input id="id_cName" name="cName" type="text" maxlength="50"
onFocus="fEnterField('cName')" onKeyDown="fKeyPress('cName')"
onKeyUp="fKeyPress('cName')" onBlur="fExitField('cName')" tabindex="1" />
 
V

VK

Js Almighty,
Anyone monitors this group?

1.) ID vs. NAME
2.) Full DOM path by 3W vs. Shortened Path by IE

Cane we make a good FAQ on it?
With a daily repost?
 
L

Lee

CES said:
All,



I'm having a problem returning focus back to an input field in Netscape. The
code works in IE and Opera but not in netscape6+.



Basically I have a function that is called upon exiting a form field, if the
value validates properly it returns true and calls another function, if it
doesn't validate the field it returns false and I want to give focus back to
the sender and highlight all of the text in the field.



The problem is that while IE and opera return the curser back to the field -
Netscape ignores the focus statement (I still can't find any examples as to
how to return the curser and highlight the text in the field).



Any suggestions as to what I'm doing wrong will be appreciated.

CES



function fExitField(sender){

returnedValue = fValidateData(sender);

if(returnedValue == true){ //

fRemoveAsterisk(sender);

}

if(returnedValue == false){

document.forms[fGetFormName(sender)].elements['id_'
+ sender].focus(); // FYI I have multiple forms an the page -
fGetFormName(sender) returns the name of the form that contains the element.

alert("Improper Format");

}

}

1. Don't pass the name of the field around. Pass a reference
to it, and you won't have to worry about which form it's in.

2. Don't validate onBlur. There are too many unexpected things
that can cause a field to lose focus. Being forced to click
the OK button of an alert, for instance.

3. Never test a logical value for equality to true or false,
and certainly never test against both cases.
If it's true, it's true, otherwise, it's false.

4. Don't name all of your functions with a lowercase "f" prefix.
If it has parentheses after it, it's a function.


function fExitField(sender){
if(fValidateData(sender)){
fRemoveAsterisk(sender);
}else{
alert("Improper Format");
sender.focus();
}
}


<input id="id_cName" name="cName" type="text" maxlength="50"
onFocus="fEnterField(this)" onKeyDown="fKeyPress(this)"
onKeyUp="fKeyPress(this)" onChange="fExitField(this)" tabindex="1" />
 
L

Lasse Reichstein Nielsen

CES said:
I'm having a problem returning focus back to an input field in Netscape. The
code works in IE and Opera but not in netscape6+.
Basically I have a function that is called upon exiting a form field, if the
value validates properly it returns true and calls another function, if it
doesn't validate the field it returns false and I want to give focus back to
the sender and highlight all of the text in the field.

Mozilla/Netscape 6+ has a quirk: If you try to change the focus, it triggers
the onblur event *before* changing the focus. So when you set focus in the
onblur handler, the real focus change happens afterwards anyway.

A known solution is to delay the setting of the focus, i.e., instead
of foo.focus(), you do
setTimeout(function(){foo.focus();},10);

/L
 
S

Stephen Poley

2. Don't validate onBlur. There are too many unexpected things
that can cause a field to lose focus. Being forced to click
the OK button of an alert, for instance.

So how would you do it? Personally, as a user, I'd prefer to get
feedback step-by-step, rather than waiting until I get to the end of the
form.

What arguably is a problem is the combination of onBlur and validation
results via an alert box. If one is doing onBlur validation, it's better
to write error messages in the HTML, next to the field concerned. Leave
the alert boxes until one gets to onsubmit.

I'm also not sure that forcing the focus back to the field concerned is
a good idea with onBlur validation. Maybe a colleague is looking up
(say) our contract number while I get on with filling in the rest of the
form. I don't want to be blocked from doing so.
 
L

Lee

Stephen Poley said:
So how would you do it? Personally, as a user, I'd prefer to get
feedback step-by-step, rather than waiting until I get to the end of the
form.

use onChange, instead of onBlur
 
S

Stephen Poley

Stephen Poley said:

use onChange, instead of onBlur

Yes, I suppose so. The one thing you can't then do is replace the small
civilised "required" marker with a bold red "ERROR - You must enter
this" marker when the user tabs through a field without entering
anything. But perhaps that's not important enough to be worth worrying
about.
 
L

Lee

Stephen Poley said:
Yes, I suppose so. The one thing you can't then do is replace the small
civilised "required" marker with a bold red "ERROR - You must enter
this" marker when the user tabs through a field without entering
anything. But perhaps that's not important enough to be worth worrying
about.

Yes. Consider how annoying it is to tab down to the field whose value
you happen to have in your paste buffer at the moment, only to have
every field along the way scream at you.
 
S

Stephen Poley

Stephen Poley said:

Yes. Consider how annoying it is to tab down to the field whose value
you happen to have in your paste buffer at the moment, only to have
every field along the way scream at you.

Granted. You've convinced me.
 
T

Tony Seddon

Thanks for the info. Added to my web page and now, after a few hours of
getting nowhere, the focus works correctly in Netscape.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top