× 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.



I set up the following example HTML file and get the same results.
"Object expected" But this time its on the <INPUT> tag.
If anyone has any cool tools that can debug this stuff, that would be a great
help.
-Bob

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



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

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.