So, if you set it at the page root outside of an event handler and alert it
on the blur it alerts OK yeah? And if you alert it again at the onFocus it
alerts OK? 

I can't see how an onFocus will run before an onBlur though?









"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-----Original Message-----
From: Brad Wood
To: CF-Talk
Sent: Wed Dec 27 17:21:51 2006
Subject: RE: HTML focus

No Dice.  That is the first thing I tried.  It is simply uncanny-- I can
set the global var in the onfocus and then alert it to prove it has been
changed, then  the onblur runs, and when I alert the exact save var
there, it is as though it never changed.

~Brad 

-----Original Message-----
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 27, 2006 11:08 AM
To: CF-Talk
Subject: RE: HTML focus

If I set any variables in the onfocus they are NOT available to the
onblur when it runs.

Well then just create the variable globally and it will be, if you want
it.

<script ...>
  Var aGlobalVar = "nothing";

  function onFocusFunc ()
  {
    aGlobalVar = "Foobar";
  } 

  function onBlurFunc ()
  {
    alert(aGlobalVar);
  }
</script>


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

---------
| 1 |   |
---------  Binary Soduko
|   |   |
---------
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 








~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265097
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to