× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Bob,

Can you try this?

<html>
<head>
<title>JavaScript Test Page</title>

<script type="text/javascript">
function reCalc() {

                 var Qty    = document.PRICEING.QTY.value;
                 var baseFee= 10.00;
 
   if            (isNaN(Qty) or Qty < 1) {
                     Qty = 1;
   }
 
    var extDiv = document.getElementById("EXTPRICE");
    if (extDiv) {
        extDiv.innterHTML = "<span>" + (Qty * baseFee) + "<\/span>";
    }
 
                 return;
}
</script>
</head>

<body>

<FORM name="PRICEING" action="#">
 I am paying for
 <input type="text" name="QTY" size="3" value="1" 
onblur="javascript:reCalc()" >
 attendee(s). The Amount Due is now:
 <span id="EXTPRICE">10.00</span> $10.00 each.
</form>
</body>
</html>

Shane Cessna
Senior iSeries Programmer
North American Lighting, Inc.
(618) 662-4483 x2776



"Walden H. Leverich" <WaldenL@xxxxxxxxxxxxxxx> 
Sent by: web400-bounces@xxxxxxxxxxxx
05/05/2006 10:42 AM
Please respond to
Web Enabling the AS400 / iSeries <web400@xxxxxxxxxxxx>


To
"Web Enabling the AS400 / iSeries" <web400@xxxxxxxxxxxx>
cc

Subject
Re: [WEB400] HTML/Javascript Object Expected






Is this cut/paste? First thing I see is that you spelled PRICING
differently in the JS and the FORM definition.

-Walden 



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.