www.irt.org RE: CF_recommendation

2001-12-17 Thread Jared Clinton

I usually find most of the javascripty things I need at www.irt.org

Jared Clinton
NEC Business Solutions
NEC Australia

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 18 December 2001 3:55 PM
To: CF-Talk
Subject: CF_recommendation


All,

Sorry to post this here.  Does anyone know of a 
JavaScript lists like CF-Talk?

I'm trying to multiply two form field values and show 
the result in a third without a submit action. So when
the curser moves to the third form field, the calulation 
is done automatically.

Thanks for the list recommendations in advance.



Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF_recommendation

2001-12-17 Thread Joseph DeVore

I just whipped this up for you - hopefully you can get the idea from this..

script language=JavaScript
function calculate() {
var f1=document.x.f1.value;
var f2=document.x.f2.value;
var f3=eval(f1*f2);
document.x.f3.value=f3;
}
/script

enter a number in the first 2 fields:br
form name=x
input type=text name=f1 value= onchange=calculate()br
input type=text name=f2 value= onchange=calculate()br
input type=text name=f3 value=
/form


HTH,
Joseph DeVore
VeloxWeb Technologies



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 17, 2001 9:55 PM
To: CF-Talk
Subject: CF_recommendation


All,

Sorry to post this here.  Does anyone know of a
JavaScript lists like CF-Talk?

I'm trying to multiply two form field values and show
the result in a third without a submit action. So when
the curser moves to the third form field, the calulation
is done automatically.

Thanks for the list recommendations in advance.



Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF_recommendation

2001-12-17 Thread Jay Jorgensen

The group over at JS-Jive is pretty active.

http://groups.yahoo.com/group/JS-Jive/


jay
[EMAIL PROTECTED]




-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 18, 2001 12:55 AM
To: CF-Talk
Subject: CF_recommendation


All,

Sorry to post this here.  Does anyone know of a
JavaScript lists like CF-Talk?

I'm trying to multiply two form field values and show
the result in a third without a submit action. So when
the curser moves to the third form field, the calulation
is done automatically.

Thanks for the list recommendations in advance.



Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists