473,397 Members | 1,974 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

focus() problem with Netscape <input onBlur>

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" />
Jul 20 '05 #1
10 6685
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?
Jul 20 '05 #2
"CES" <No**@noSpam.com> writes:
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
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #3
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" />

Jul 20 '05 #4
On 1 Dec 2003 15:38:58 -0800, Lee <RE**************@cox.net> wrote:
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.

--
Stephen Poley
Jul 20 '05 #5
Lee
Stephen Poley said:

On 1 Dec 2003 15:38:58 -0800, Lee <RE**************@cox.net> wrote:
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.


use onChange, instead of onBlur

Jul 20 '05 #6
JRS: In article <bq*********@drn.newsguy.com>, seen in
news:comp.lang.javascript, Lee <RE**************@cox.net> posted at Mon,
1 Dec 2003 15:38:58 :-

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.
In the page I'm currently working on, there can be several forms with
the same structure. Here it is convenient to use the field name
qualified by the form name; thus, identical parts of different forms ban
use the same name.

There is much to be said for limiting the scope of identifiers; for
example, it reduces the risk of inadvertently writing to the wrong form.
4. Don't name all of your functions with a lowercase "f" prefix.
If it has parentheses after it, it's a function.


If it has a left parenthesis, it needs to be a function. That means
that *either* it is a function, *or* it is a mistake. The f-notation
may help in avoiding the latter.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> JS maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/JS/&c., FAQ topics, links.
Jul 20 '05 #7
On 2 Dec 2003 09:14:53 -0800, Lee <RE**************@cox.net> wrote:
Stephen Poley said:

On 1 Dec 2003 15:38:58 -0800, Lee <RE**************@cox.net> wrote:
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.


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.

--
Stephen Poley
Jul 20 '05 #8
Lee
Stephen Poley said:

On 2 Dec 2003 09:14:53 -0800, Lee <RE**************@cox.net> wrote:
Stephen Poley said:

On 1 Dec 2003 15:38:58 -0800, Lee <RE**************@cox.net> wrote:

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.


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.


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.

Jul 20 '05 #9
On 2 Dec 2003 13:16:00 -0800, Lee <RE**************@cox.net> wrote:
Stephen Poley said:

On 2 Dec 2003 09:14:53 -0800, Lee <RE**************@cox.net> wrote:
Stephen Poley said:

On 1 Dec 2003 15:38:58 -0800, Lee <RE**************@cox.net> wrote:

>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.

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.


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.

--
Stephen Poley
Jul 20 '05 #10

Thanks for the info. Added to my web page and now, after a few hours of
getting nowhere, the focus works correctly in Netscape.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 23 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: chirs | last post by:
Hi, I want to put a value in a cookie. The following code does not work. It does not store the box1.value in the cookie. How can I fix it? <input type="text" name="box1"...
3
by: iinet | last post by:
How can i set in my css a min width for input elements, but leave the max size dynamic? Ben
3
by: TR | last post by:
Is it possible with CSS to prevent this wrapping alignment with a checkbox with a nested label? This is the label of the checkbox that wraps beneath it I'd prefer it looked like...
4
by: owen | last post by:
I have an <input> box and i want to disable the apostrophe ( ' ) key, so when you press it, no character appears in the input box. All other keys should work ok. I can trap the keypress event...
2
by: Rocio | last post by:
I have a html button created with <input type="submit" id="btnPayNotices" value="Pay Notices" /> now I need to trap the click event at the server side. Yes, this button had to be created with...
5
by: Bart van Deenen | last post by:
Hi all I have a form with a couple of input fields, embedded within spans. I am using script.aculo.us for dragging and dropping, and want to reorder the input fields that way. The input fields are...
4
by: Rick | last post by:
I'm trying to make an input tag visible or hidden based on the value of another input tag, so that when the 1st input tag is changed in anyway, the 2nd input tag will become visible. Thanks in...
2
by: Sreenath Rao Nellutla | last post by:
Hai all, I am trying to create dropdown calendar control with HTML input control by writing JavaScript. But while executing I am getting the error as "Error on Page" on the status bar of the...
1
by: test9991014 | last post by:
Hi folks, I've got something like this: <table> <tr> <td>1</td> <td align=center> <input type=text> </td>
8
by: Zhang Weiwu | last post by:
hello. Is it possible to design CSS in the way that content in <inputare not visible in print out (a.k.a. value of <inputnot visible) while the border remain visible? trial: input {...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.