473,396 Members | 1,982 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,396 software developers and data experts.

self.focus stopping all keyboard input to window

Hi,

At the top of my php file I have got :-

<body onblur="self.focus();">

so when I click off onto another window, my window comes back up in front
which is perfect. The problem however, is that when I try to type into my
form boxes, the key transfers are all being lost (i.e. keyboard is
disabled)!

Can anyone shed any light?
Thanks, Mark
Jul 23 '05 #1
14 4503
On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:
Can anyone shed any light?


'Let there be focus'

Translation: Stop stuffing with the focus in the first place.

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Jul 23 '05 #2

"Andrew Thompson" <Se********@www.invalid> wrote in message
news:13*****************************@40tude.net...
On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:
Can anyone shed any light?


'Let there be focus'

Translation: Stop stuffing with the focus in the first place.


Er....say again?
Thanks, Mark
Jul 23 '05 #3
On Wed, 17 Nov 2004 21:01:21 GMT, Mark wrote:
"Andrew Thompson" <Se********@www.invalid> wrote in message
On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:
Can anyone shed any light?


'Let there be focus'

Translation: Stop stuffing with the focus in the first place.

Er....say again?


I'll try it again, slower..

<body onblur="self.focus();"> creates problem. :-(

<body> fixes problem. ;-)

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Jul 23 '05 #4
DU
Mark wrote:
Hi,

At the top of my php file I have got :-

<body onblur="self.focus();">

so when I click off onto another window, my window comes back up in front
which is perfect. The problem however, is that when I try to type into my
form boxes, the key transfers are all being lost (i.e. keyboard is
disabled)!

Can anyone shed any light?


Maybe you can shed more light on the whole context. Is that a secondary
window? Why do you need to make that window always up in front of other
windows? Can you elaborate on the analysis, webpage context, design
decision? You maybe trying to find a correct/exact solution to a
bad/wrong design decision.

You understand that making a window get the focus like you do is very
restrictive, very constraining, very user-unfriendly. That's why browser
manufacturers (Opera, Mozilla for starters; don't know about Konqueror,
Safari) are now granting users absolute veto powers over raising and
lowering (against pop-under) windows.

DU
--
The site said to use Internet Explorer 5 or better... so I switched to
Mozilla 1.7.3 :)
Jul 23 '05 #5
"DU" <dr*******@hotNOSPAMmail.com> wrote in message
news:30*************@uni-berlin.de...
Mark wrote:
Hi,

At the top of my php file I have got :-

<body onblur="self.focus();">

so when I click off onto another window, my window comes back up in front
which is perfect. The problem however, is that when I try to type into my
form boxes, the key transfers are all being lost (i.e. keyboard is
disabled)!

Can anyone shed any light?

Hi Du,
Maybe you can shed more light on the whole context. Is that a secondary
window? Why do you need to make that window always up in front of other
windows? Can you elaborate on the analysis, webpage context, design
decision? You maybe trying to find a correct/exact solution to a bad/wrong
design decision.


It is for a personal-use script. The program does a 'window.open' to display
a page
which shows current horse-prices. The main window then goes to Betfair. I
then need
to be able to navigate the betfair website, without my 'information' window
disappearing,
so that I may compare prices.

I agree it may not be the best way to do things, but I was told it would be
the simplest :-}
Basically, I need some code which makes sure my window is always at the
front of the
betfair window. I do not care whether its java, win32, PHP or ASP as long as
it gets the
job done :-)

Any help would be appreciated.
Thanks, Mark
Jul 23 '05 #6
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:14*****************************@40tude.net...
On Wed, 17 Nov 2004 21:01:21 GMT, Mark wrote:
"Andrew Thompson" <Se********@www.invalid> wrote in message

On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:

Can anyone shed any light?

'Let there be focus'

Translation: Stop stuffing with the focus in the first place.

Er....say again?


I'll try it again, slower..

<body onblur="self.focus();"> creates problem. :-(

<body> fixes problem. ;-)


Yes, but will sadly create a new problem - My window will no longer stay at
the front :-(
Thanks, Mark
Jul 23 '05 #7
On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote:
It is for a personal-use script.


That changes *everything*, I was thinking you meant on an
internet site visited by others.

For a personal script, you can guarantee the environment
(including single browser) and adjust security settings and
plug-ins (such as pop-up blockers) as required.

Have you tried framing the two pages? What are the URLs?

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Jul 23 '05 #8
rf
Mark wrote:
<body onblur="self.focus();"> creates problem. :-(

<body> fixes problem. ;-)

Yes, but will sadly create a new problem - My window will no longer stay

at the front :-(


How do you know your viewer *wants* your page at the front? That is why they
clicked another window, isn't it? To, you know, look at the *other* window.

If I were to encounter such a page I would immediately press the back
button.

--
Cheers
Richard.
Jul 23 '05 #9

"rf" <rf@.invalid> wrote in message
news:q0******************@news-server.bigpond.net.au...
Mark wrote:
> <body onblur="self.focus();"> creates problem. :-(
>
> <body> fixes problem. ;-)
>


Yes, but will sadly create a new problem - My window will no longer stay

at
the front :-(


How do you know your viewer *wants* your page at the front? That is why
they
clicked another window, isn't it? To, you know, look at the *other*
window.

If I were to encounter such a page I would immediately press the back
button.


Because it is for an inhouse development on an intranet - and they /will/
obey me ;-)
Thanks, Mark
Jul 23 '05 #10
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:1x****************************@40tude.net...
On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote:
It is for a personal-use script.
That changes *everything*, I was thinking you meant on an
internet site visited by others.

For a personal script, you can guarantee the environment
(including single browser) and adjust security settings and
plug-ins (such as pop-up blockers) as required.


Yes, I believe I have done all this to a satisfactory level. The window
opens up, and sits there with my page. The main window gets re-directed to
the required destination. If you click on the main window, my window comes
up on top - All works perfectly, except for the fact, I cannot type in my
window (the window contains a form) rendering the whole application useless
:-(

It /appears/, that when I type, the onblur event is being called, so
recalling the window, rather than registering the keypress as a character.

Have you tried framing the two pages? What are the URLs?


No, this is not possible as I need the full screen of the main page, then
this popup window is a small window which overlaps a square piece of 'dead
space' on the main site.

On a side note --- Windows programming is all very new to me, so things like
eventhandlers are a complete nightmare. I used to program in C++/ASM back in
the days of dos, so I do understand the basics of logic and functions etc,
but the windows part is a real non-starter for me - Can anyone recommend any
books with good examples? I have various 'reference' books for function
names / parameters, but these obviously do not show me how to implement the
procedure into my code.
Thanks, Mark
Jul 23 '05 #11
rf
Mark wrote:

No, this is not possible as I need the full screen of the main page, then
this popup window is a small window which overlaps a square piece of 'dead
space' on the main site.


Sounds like a good excuse for an iframe.

--
Cheers
Richard.
Jul 23 '05 #12
"Mark" <ma*******@horsemad.co.uk> wrote in message news:<35************@newsfe6-win.ntli.net>...
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:1x****************************@40tude.net...
On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote:
It is for a personal-use script.


That changes *everything*, I was thinking you meant on an
internet site visited by others.

For a personal script, you can guarantee the environment
(including single browser) and adjust security settings and
plug-ins (such as pop-up blockers) as required.


Yes, I believe I have done all this to a satisfactory level. The window
opens up, and sits there with my page. The main window gets re-directed to
the required destination. If you click on the main window, my window comes
up on top - All works perfectly, except for the fact, I cannot type in my
window (the window contains a form) rendering the whole application useless
:-(

It /appears/, that when I type, the onblur event is being called, so
recalling the window, rather than registering the keypress as a character.

Have you tried framing the two pages? What are the URLs?


No, this is not possible as I need the full screen of the main page, then
this popup window is a small window which overlaps a square piece of 'dead
space' on the main site.

On a side note --- Windows programming is all very new to me, so things like
eventhandlers are a complete nightmare. I used to program in C++/ASM back in
the days of dos, so I do understand the basics of logic and functions etc,
but the windows part is a real non-starter for me - Can anyone recommend any
books with good examples? I have various 'reference' books for function
names / parameters, but these obviously do not show me how to implement the
procedure into my code.
Thanks, Mark


Boy, people certainly are argumentative around here...

Have you looked into HTAs? Where browser coverage isn't an issue - and
you don't mind using IE (ugh) the flexibility is tremendous.

Otherwise...

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>untitled</title>
</head>
<body>
<input type="button" value="open it"
onclick="window.open('pop.html','pop','width=400,h eight=300,left=100,top=100,status=0')"
/>
</body>
</html>
[pop.html]
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>untitled</title>
<script type="text/javascript">
//<![CDATA[

var timerID = null;

onblur = function()
{
timerID = setTimeout('self.focus()', 50);
}

onload = function()
{
var i = 0, el, els =
document.getElementsByTagName('form').item(0).elem ents;
while (el = els.item(i++))
if (/text(area)?/.test(el.type))
{
el.onfocus = function()
{
if (timerID)
clearTimeout(timerID);
}
el.onblur = function()
{
timerID = setTimeout('self.focus()', 50);
}
}
self.focus();
}

//]]>
</script>
</head>
<body>
<form style="width:120px;">
<input type="text" name="foo" value="" />
<input type="text" name="feh" value="" />
<textarea name="hah" rows="4" cols="24"></textarea>
</form>
</body>
</html>

Just uses a timer to 'reverse' the order of blur/focus firing so you
can control them. Assuming one form in that popup.
Jul 23 '05 #13

"RobB" <fe******@hotmail.com> wrote in message
news:ab*************************@posting.google.co m...
"Mark" <ma*******@horsemad.co.uk> wrote in message
news:<35************@newsfe6-win.ntli.net>...
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:1x****************************@40tude.net...
> On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote:
>
It /appears/, that when I type, the onblur event is being called, so
recalling the window, rather than registering the keypress as a
character.

> Have you tried framing the two pages? What are the URLs?


No, this is not possible as I need the full screen of the main page, then
this popup window is a small window which overlaps a square piece of
'dead
space' on the main site.

On a side note --- Windows programming is all very new to me, so things
like
eventhandlers are a complete nightmare. I used to program in C++/ASM back
in
the days of dos, so I do understand the basics of logic and functions
etc,
but the windows part is a real non-starter for me - Can anyone recommend
any
books with good examples? I have various 'reference' books for function
names / parameters, but these obviously do not show me how to implement
the
procedure into my code.
Thanks, Mark


Boy, people certainly are argumentative around here...


Sure are <lol>, it has took numerous replys before any kind of code /
functions were even mentioned.

Have you looked into HTAs? Where browser coverage isn't an issue - and
you don't mind using IE (ugh) the flexibility is tremendous.
Sorry to sound a bit thick, but what does HTAs stand for?


Otherwise...

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

CODE SNIPPED <<<<


One phrase springs to mind 'King amongst men'.

Rob, I cannot thank you enough. I have just got home at 03:40am after
spending the day driving through snow and achieving very little- copied and
pasted your code and run it, and it works perfectly. I am not even going to
try and understand nor modify it until I have had at least 5 hours sleep,
but at least now, I know I have the basecode to do the job properly.

Thanks ever so much, it is truly appreciated.
Thanks, Mark
Jul 23 '05 #14
On Fri, 19 Nov 2004 03:53:09 GMT, Mark wrote:
Have you looked into HTAs? Where browser coverage isn't an issue - and
you don't mind using IE (ugh) the flexibility is tremendous.


Sorry to sound a bit thick, but what does HTAs stand for?


AFAIU..

It stands for Hyper Text Application.
It is an 'whatever.html', renamed to 'whatever.hta'.

IE then recognizes that web-page as being a 'signed' web application
that can then gain extended privileges to perform functionality that
would not normally be allowed in an internet environment. This
includes having control of programs outside the browser, or access
to the local filesystem (the user's hard disk).

HTH

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Jul 23 '05 #15

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

Similar topics

2
by: Bettina | last post by:
I have a text field and I want that after I enter a text in this text field, the focus goes to the button.gif. How can I do it? Any ideas? I know that when you use an input type="submit", the focus...
4
by: Scott Navarre | last post by:
Hi, I have Red Hat 8.0 and have the default Mozilla browser that comes with it. I am programming in javascript and have come across something problematic. Given the following code: <HTML>...
5
by: Arthur T. Murray | last post by:
http://www.scn.org/~mentifex/jsaimind.html is a free, public-domain AI in JavaScript that may be copied to your Web site with your own changes. Freshly updated and modified from the AI Mind-1.1...
20
by: Arne | last post by:
During testing <div style="overflow:auto;"> in CSS I noticed the mousewheel would work in Mozilla only after I made a <a href="#">some text</a> link and clicked on that, within the div. It...
1
by: WH | last post by:
I put this line in HTML <body bgcolor="#FFFFFF" onLoad="focus()"> Both Mozzila and IE can do self.focus(). However Opera still does not take the focus().
2
by: Stephan Rose | last post by:
Ok here's my situation... Got an MDI application with a panel to my right that has a tree view for the project stuff, etc. Now if I select an item in the tree view, the tree view gains input...
8
by: Tom | last post by:
I am using VB.NET to control another program. I have the program's window hwnd; however, I need to be able to set the focus to that other programs window so I can send it some keystrokes. I thought...
8
by: sconeek | last post by:
hi all, i have a html form with multiple text fields, accepting input from a virtual onscreen keyboard. so far i have document.forms.elements.value+=x; The problem is that i dont want to...
10
by: Gary | last post by:
I'm trying to find a way to determin which window Within-Another-Program currently has the focus. THE SITUATION: (Skip down to "My Question" if you don't want the background...) * This is...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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
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
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
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,...

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.