Popup Window Blur Event

Jul 23, 2005

I'm triing to write script that close popup window, when user click outside the popup. Script below is working fine in firefox (v1.0.3), but not in IE.

I tried also to print hello but still the same problem firefox OK IE not. I think the problem is in event capture, but I can't fix it.

My script:
fotowin = window.open("", "foto", "width =100,height
=100,location=no,menubar=no,directories=no,toolbar =no,scrollbars=no,resizable=no,status=no");

fotowin.onblur = closeWin;
if (fotowin.captureEvents) {
fotowin.captureEvents(Event.BLUR);
}

function closeWin() {
fotowin.close();
//fotowin.document.write("hello");
}

View 2 Replies


ADVERTISEMENT

Practical Use Of Window Focus And Blur Event?

Aug 15, 2011

What is the practical use window.focus() and window.blur()?

View 2 Replies View Related

JQuery :: OnChange Event - Web Application - Each Blur Event Makes A Call Webserver To Store Value Of Textfield

Jan 21, 2010

I'm currently facing a weird issue with the onchange event. I have a web application where each blur event makes a call the webserver to store the value of the textfield. I only want to trigger that ajax call when something has changed, so i track the onchange event on each textfield to set a flag if something has changed.

The onchange event always fires to first time when i click outside of a textfield even if i didn't change anything in the field.

I narrowed it down to the following: A prefilled textfield always fires the onchange-event the first time you leave the textfield. An initially empty textfield does not fire the onchange event.

Sample code (IE 8 on Windows 7 computer):

script:

HTML:

View 5 Replies View Related

Closing Popup Window With OnBlur Event Handler?

Jul 20, 2005

I want to close a popup-window with the onBlur eventHandler.
function closeIt() {
setTimeout('window.close()',2000); }
<body onBlur="closeIt()">
html
</body>

There is a form on my page, and when a input-field gets focus, body looses focus and the window closes. That's not what I want. I want to close the window, if focus goes to another
window or application, but not when someone tries to fill that form.

View 2 Replies View Related

Firefox Onmousedown Popup/layer Focus/blur

Nov 12, 2006

I'm trying to create a control which when the mouse button gets
pressed on one div an absolute positioned div pops up in
place of the cursor. From there the cursor should interact with
the dialog before the mouse button is released. In other words
one element will catch onmousedown, display the popup, and
the popup element will catch onmouseup. This works fine in
IE as the popup automatically accepts following events,
but my problem is in Firefox.

In Firefox everything behind the popup
still receive events even though they can't be seen
(hidden by the popup). I have to release the mouse button and then
click on the popup again before it accepts the onmouseup event.

I also used a different cursor on the popup to see if Firefox
recognized it was there at all. Still the cursor doesn't change
until I release themouse button and move the cursor across
the popup element.

I've tried focus/blur, timeout delays, hiding the first element
(the one which receives onmousedown) but nothing works.

The only thing that works is hiding the entire body and then
using setTimeout to show the entire body again 1ms later.
Obviously though that is very ugly.

View 3 Replies View Related

Detect The Source Of A Blur Event?

Feb 10, 2010

I have these "editable" divs in my document. When you click them, a text box comes up and you type something and push enter. It changes what's in the div.There is also a blur event associated with the text box. When the user tabs or clicks away, it fires the blur event. Here lies the problem.I have other elements on the page that are clickable. I don't want those clickable things to fire their events if the user is clicking away from the text box, ie. the blur event. This isn't a problem is the user pushes tab, for instance.

View 3 Replies View Related

Jquery :: .blur() Event Not Triggering?

Oct 11, 2010

I've spent a good while trying to solve this on my own with no luck. The .blur jquery event I'm trying to use isn't firing and I can't figure out why.My entire JS file:

Code:
$('#unitOneRent').blur(function() {
alert('**** yeah!');

[code]....

View 1 Replies View Related

JQuery :: Focus And Blur Event On DIV Element

Mar 20, 2011

I want to handle focus and blur events on any DIV element but don't know how? I tried this one:
$('.myDIV').bind('focus',function(event){
// something
});
But it doesn't work!

View 2 Replies View Related

JQuery :: Executing Code On Blur Event?

Dec 2, 2010

I am doing a simple function to validate text fields(you can see the code below). Now, the alert box appears only once when I refresh the page, not when I click inside or outside the username box. #username is the id of a input text field. On a sidenote, how can I pass multiple parameters to the function(not a fixed number of params)? or should I just pass an array?

[Code]...

View 1 Replies View Related

How To Save Textbox Value In Session On Blur Event

Jul 6, 2007

i want to store current textbox value in session on onblur event of textbox.
how can i do this. i am using javascript ans asp.net 1.1. And
How can i call server side function on onblur event of textbox.

View 2 Replies View Related

Is Window.blur() Only Working In IE

Apr 26, 2010

A test script like this:

<A HREF="javascript:window.blur()">Blur Window</A>

put the window in the background in IE, when pushed, but it does nothing in other browsers like Chrome, Safari, Opera, Mozilla under Windows.

My real page is loaded from an external program (not the browser), if I dont have anything to tell the user, then I want the page to be "minimized" (or closed).

I am also able to close it in IE, but most people seem to believe that it shouldn't be possiple to close a close a window through Java, when it is not opened by Java.

Do I have other "minimize"/"close" options or how do I make blur work?

View 3 Replies View Related

JQuery :: Validating Textbox Entries Using The .blur Event?

Jul 15, 2011

I am sure that this is a BASIC question for javascript gurus but I'm struggling to resolve.The form starts with the cursor focus in the FROM ACCT NUMBER FIELD. When I tab to the next field without entering any value in this text field I want to send an alert to the user that the field is required and put the cursor back on that field. I attempted to do that using:

$(function() {
$("#ARTransferForm\:fromAccountNumber").blur(function() {
var fromAcctNumLen = $("#ARTransferForm\:fromAccountNumber").val().length;

[code]....

View 1 Replies View Related

JQuery :: Click Event Not Fired When Hide() Called By Blur()

May 24, 2009

I have a textarea and a DIV as code below. The way it supposes to work is when I focus on the textarea by clicking it, the DIV will show. Otherwise, it will be hidden. Then when I click the DIV, there will be an alert(). However, right now if I click on the DIV, it will trigger the blur() event first which calls to hide() the DIV. After that, the click event is not called at all. I need to be able to click on the DIV and the DIV is not hide() at all and show alert().

<!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">
<head>

[Code]....

View 2 Replies View Related

Firefox3: Window.focus() And Blur() Between Tabs Not Working

Apr 8, 2009

I'm trying to build a data navigation utility that will allow a central "map" page to control a number of tab pages that are loading individual pages from a large set of HTML. All are local file://localhost/, with localhost popups enabled. (for dev/testing all popups are enabled since firebug 1.3.3 has problems loading localhost .js code) preference to "raise and lower windows" has been enabled I am using firefox 3.0.8 on FreeBSD 6.4

Anyway, I can't get window.focus() and blur() to work between cooperating tab/windows who know each other's names.

Here following are two cooperating mirror tab pages that i'm trying to get working. Have tried a number of combinations of the focus() and blur() calls. Have tried with/without messaging. Messaging works fine.

I have noticed that the calling tab seems to unload/reload as a result of the click event. This still allows the message to get through OK, but I guess the reload could be taking the focus again.

An annoying alert() dialog could of course get focus to the message receiver, but it requires another click to get it out of the way.

The concept of these focus() and blur() calls is so simple, and I've searched all over the web for examples, but nothing seems applicable.

Have also seen that this may be a bug in Firefox.

======== code for "mirror" pages "focus1" and "focus2" follows:

<html>
<head>
<title>test window focus - 1</title>
<script language="javascript">

[Code]....

View 7 Replies View Related

Dynamically Open A Popup Window But Ie8 Blocks It With The Popup Blocker

Jan 22, 2010

I am trying to dynamically open a popup window but ie8 blocks it with the popup blocker. basically within a ajax fuction I have a confirm button and if the user clicks yes it opens a popup window. now I tried it with a javascript function but it got blocked, so I have tried it by creating a form with a button in it and instead of calling the popup function direct I call document.form.button.click and in the form my button has onclick"popup('<? echo url; ?>')" but this also is detected as a unwarranted popup and is blocked.

now I understand that the popup blocker works when a popup is called without user interaction, but allows popups on say button clicks. how can I get the popup to work

View 3 Replies View Related

Opening Popup Window By Avoiding Popup Blocker?

Sep 22, 2010

In my application i use window.showmodaldialog() to pop up a window. When i run it in IE pop up blocker wont blocks the window... But when run it in FireFox pop up blocker will blocks the pop up window.. is there any way to open a window with out blocking(avoiding ) by the pop up blocker?

View 1 Replies View Related

Child Window Close Event - Opening Another Link In A Separate Window Using Window.open()

Jan 29, 2010

I have a HTML and I am opening another link in a separate window using window.open() . The child window is something like 'http://yahoo.com' which is out side html. I need to refresh the parent window when the child window is closed.

View 4 Replies View Related

Window.addEventListener( "blur" , Function()

Jun 15, 2011

I have this piece of code:

Code:

I don't understand it ... it should work :-? ...

View 2 Replies View Related

Form Opening In The Main Window/ Simeltaneiously Closes Popup Window

Jan 8, 2004

I have a popup window which has the search form in. What I want to do is for the popup window to close once the form is submitted, and to post the form data to a page on the main window.

Is anyone able to advise. As the main page is dynamic, it is not possible to give the page a name.

View 4 Replies View Related

JQuery :: Create A Hidden Form Field In A Parent Window From Within A Child Window - Popup

Jun 13, 2011

Im trying to create a hidden form field in a parent window from within a child window (popup). I am trying to use jQuery, but unfortunately the hidden field does not get created.

Code JavaScript:

View 2 Replies View Related

Javascript Popup Window That Stays In Front Of Parent Window?

Jul 20, 2005

I have a couple of utility windows - a calculator and a calendar that popup
from my main window. I would like them to always stay in front of the parent
window until they are shut down with there own close buttons. As it is, when
you click back to the parent window, of course it comes in front of the
child windows. Can I do this?

View 4 Replies View Related

Getting Data Back To Parent Window Field From Popup Window

Apr 7, 2007

My problem is that ..... I have to select Data from Popup Window and get that Data back to my Parent window's textarea field..

View 2 Replies View Related

Open A Popup Window From A PHP Site And Pass In Some Parameters To Use In The Pop Up Window

Sep 23, 2010

I need to open a popup window from a PHP site and pass in some parameters to use in the pop up window. I have the params in an input box and need to get the val of the box into a param and pass it to the new popup window. All pages are local and in the same folder. The id of the input box is 'ddutykey'. The name of the new window would be showduty.php if possible.

View 3 Replies View Related

Popup Window Where Main Window Is Maintained In Background?

Apr 8, 2011

I have the code below in my popup window which currently brings up a blank page in the background as the main window. Instead I want the popup to come up but the original page I left is in the background as the main window. Does anyone know how I can do that with the code I currently have.

<html>
<head>
<title>JavaScript Popup Example 3</title>

[code]....

View 21 Replies View Related

Submit A Form In Popup Window To Opener Window

Oct 11, 2006

I have a form that is in a popup window. I need the form to submit to the opener window. Is is possible to do that? The opener window is the main window so it is does not have a name and there are no framesets.

<form action="something.php" method="post" target="????">
I'd like to use window.opener in the target but that's JavaScript...

I know somebody has done this before and has the code.

View 2 Replies View Related

Inserting Value From Popup Window To Parent Window Select

Sep 21, 2004

I am trying to insert the value of a variable gathered from a popup window as an option in a <select> menu on the main window. This is the code I have so far:

Code:
var newOption = document.createElement("option");
newOption.value = '<?=$userfile_name?>'
newOption.appendChild(document.createTextNode('<?=$userfile_name?>'));
select.insert(newOption);

How do I do the rest? I just want to add this new value to the end of the list.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved