ÿþ<!-- Vickie Unite March 10, 2007 Project 6 --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strickt//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang = "en" dir="ltr"> <head> <title>Order Calculations</title> <script type="text/javascript"> <!--HIDE FROM INCOMPATIBLE BROWSERS // STOP HIDING FROM INCOMPATIBLE BROWSERS --> function calcOrder() { var item = document.order.item.value var quantity = document.order.quantity.value; var rate = document.order.rate.value; var total = quantity * rate; alert("Total cost of the " + item + " $" + total + "."); } </script> </head> <body> <form name="order" action="" method="get"> <label for="item">Item</label>&nbsp&nbsp;<input type="text" name="item" id="item" /><br /> <label for="quantity">Quantity</label>&nbsp&nbsp;<input type="text" name="quantity" id="quantity" /><br /> <label for="rate">Price</label>&nbsp&nbsp;<input type="text" name="rate" id="rate" /><br /><br> <button type="button" onclick="calcOrder();">Calculate Total</button></p> </form> </body> </html>
Site hosted by Angelfire.com: Build your free website today!