> The trick is, in the hit-return-while-email-field-is-focused 
> scenario, 
> it's the qForms validation that kicks off first - and hacking 
> qForms to 
> do this would be a bear. Now if there was a variable qForms 
> uses itself 
> that I could tap into when the other blur-triggered code trips, that 
> would be the route to take, I think. It's just a matter of 
> finding out 
> if such a variable is used, and if so, what it is.

Could you wrap the qForms function in another one?  Like so:
<form ... onSubmit="qFormsWrapper()">

JS func:
function qFormsWrapper() {
  if (!workDone) {
    qForms();
    workDone++;
  }
}

Other JS func:
function validateEmail() {
  if (!workDone) {
    //validation code
    workDone++;
  }
}



------------------------------------------------------------------------------
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. 

==============================================================================
"EMF <idahopower.com>" made the previous annotations.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:262955
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to