473,498 Members | 1,832 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Please Help! How to bring focus back on previous frame element

Hi:

Currently I am having a problem with my webpage. My page consist of
two frames, one consist of input text field and the other contains
link for different pop-up windows. The problem follows:

1. At the beginning, focus is placed on an input text field of the
first frame (so there's a blinking cursor on such field).

2. Then users click on a link of the second frame (thus focus is set
on the clicked link) and a second window popup.

3. Right after users performed their operations on the pop-up window,
they will close the window and will like to have focus brought back to
the previously focused text field of the first field (Notice: After
users close the pop-up window, the previously focused text input still
have a blinking cursor and you may type on the field. However, if you
tab out, you would fine that the focus is on the clicked link of the
second frame. That means the focus is not on the first frame's text
field and if such text field contains an onchange function, such
function will not be activated as users tab out).

My problem is as users click on the link of the second frame, the
focus is placed on the selected link and a window pops up. How can I
have the focus placed back on the first frame's text field after
closing the pop-up so that I can enter data and tab out to activate
the onchange function of such text field. Having a blinking cursor of
such text field while not really having the focus on such field seems
confusing to users.

Thanks very much for every bit of help.

Dai
Jul 23 '05 #1
3 2602
In article <64**************************@posting.google.com >,
da**********@hotmail.com enlightened us with...

My problem is as users click on the link of the second frame, the
focus is placed on the selected link and a window pops up. How can I
have the focus placed back on the first frame's text field after
closing the pop-up so that I can enter data and tab out to activate
the onchange function of such text field. Having a blinking cursor of
such text field while not really having the focus on such field seems
confusing to users.


Have a global function in the frame that sets a variable to an element
each time one gets focus. This keeps track of where the user is. In the
onFocus of the window, set cursor focus to that element. Don't forget to
test it for null or set to a default for the first load before the user
has actually focused anything.

Note that i do not recommend this for internet use. Intranet and CD
would be fine.

--
--
~kaeli~
Going to church doesn't make you a Christian any more than
standing in a garage makes you a car.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #2
kaeli <ti******@NOSPAM.comcast.net> wrote in message news:<MP************************@nntp.lucent.com>. ..
In article <64**************************@posting.google.com >,
da**********@hotmail.com enlightened us with...

My problem is as users click on the link of the second frame, the
focus is placed on the selected link and a window pops up. How can I
have the focus placed back on the first frame's text field after
closing the pop-up so that I can enter data and tab out to activate
the onchange function of such text field. Having a blinking cursor of
such text field while not really having the focus on such field seems
confusing to users.


Have a global function in the frame that sets a variable to an element
each time one gets focus. This keeps track of where the user is. In the
onFocus of the window, set cursor focus to that element. Don't forget to
test it for null or set to a default for the first load before the user
has actually focused anything.

Note that i do not recommend this for internet use. Intranet and CD
would be fine.

--


Thanks Kaeli, but I wonder other than setting a global variable to
remember the last focused field and automatically set back the focus,
is there any way for users to click on a link of another frame and
then after such link brings up a pop-up and close the window, the
focus can be brought back the original frame. Is there such innate
Javascript function since somehow the original frame's text field
continue to have a blinking cursor throughout the process, I wonder if
there's any function to have the focus stay on the field instead of
sending the focus to link of the second frame when it is clicked.

Thanks for all the time and help!
Jul 23 '05 #3
In article <64**************************@posting.google.com >,
da**********@hotmail.com enlightened us with...

Thanks Kaeli, but I wonder other than setting a global variable to
remember the last focused field and automatically set back the focus,
is there any way for users to click on a link of another frame and
then after such link brings up a pop-up and close the window, the
focus can be brought back the original frame. Is there such innate
Javascript function since somehow the original frame's text field
continue to have a blinking cursor throughout the process, I wonder if
there's any function to have the focus stay on the field instead of
sending the focus to link of the second frame when it is clicked.

Thanks for all the time and help!


Okay, if I understand you, you want to focus the frame.
So, sure, assuming you know the name of the frame you want focused.
self.parent.frames['framename'].focus();
should work from any of the frames in the set.
If you want to do it from the popup, do
self.opener.parent.frames['framename'].focus();

Both assume a simple frameset that doesn't have a frameset within a
frameset type setup. If you have a complex frameset, replace 'parent'
with 'top'. Warning: using 'top' will break if a foreign frameset puts
your frames inside it.

HTH

--
--
~kaeli~
A midget fortune teller who escapes from prison is a small
medium at large.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #4

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

Similar topics

5
3468
by: duikboot | last post by:
Hi all, I'm trying to export a view tables from a Oracle database to a Mysql database. I create insert statements (they look alright), but it all goes wrong when I try to execute them in Mysql,...
3
2305
by: Lodewijk van Haringhal | last post by:
I'am new with javascritping not with programming. Is there nobody who can help me with ths simple promblem? :) Please, please give me a hint. Please help me with this script. I have two lists in...
6
1758
by: James Walker | last post by:
Can some one help I get an error of 'checkIndate' is null or not an object can someone please help. I can't work out why Thanks in advance James <form> <td height="24" colspan="7"...
0
1675
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
3569
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
7
3247
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
3230
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
13
2114
by: sd00 | last post by:
Hi all, can someone give me some coding help with a problem that *should* be really simple, yet I'm struggling with. I need the difference between 2 times (Target / Actual) However, these times...
6
3280
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
2284
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
0
7121
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
6993
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7375
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5456
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4584
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3088
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1411
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
287
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.