Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is what I have to do:

Many companies normally charge a shipping and handling charge for purchases. Create a Web page that allows a user to enter a purchase price into a text box and includes a JavaScript function that calculates shipping and handling. Add functionality to the script that adds a minimum shipping and handling charge of $1.50 for any purchase that is less than or equal to $25.00. For any orders over $25.00, add 10% to the total purchase price for shipping and handling, but do not include the $1.50 minimum shipping and handling charge. The formula for calculating a percentage is price * percent / 100. For example, the formula for calculating 10% of a $50.00 purchase price is 50 * 10 / 100, which results in a shipping and handling charge of $5.00. After you determine the total cost of the order (purchase plus shipping and handling), display it in an alert dialog box. Save the document as CalcShipping.html.

Where am I going wrong?

Here is my code:

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript">
<title>Calcuate Shipping</title>
    <style>
        body {
            text-align: center;
            font-family: sans-serif;
        }
        ul {
            list-style-type: none;
        }
        ul li {
            padding-bottom: 6px;
        }
        form label {
            display: inline-block;
            text-align: right;
            width: 150px;
        }
    </style>
    <script>
        function calcShipping() {
            // Declare variables.

            var price = document.getElementById("price"),
                shipping = document.getElementById

("shipping"),
                total = document.getElementById("total"),
                output;

            // First, get the price. The value of a text input 

is a string.
            // Before we can do math, covert the string to a 

number
            // using parseFloat().

            price = parseFloat(price.value);

            // Next we check to see if the price is greater 

than zero and
            // less than or equal to $25.00.

            // If it is, we put $1.50 in the shipping field, 

add $1.50 to
            // the price and display it in the total field.

            // The return keyword tells the program to end.

            // toFixed makes sure it displays two decimal 

places, even if
            // they're zeros.

            if (price > 0 && price <= 25) {
                shipping.value = "$1.50";
                output = price + 1.50;
                total.value = "$" + (output).toFixed(2);
                return;
            }

            // Next, if the price is greater than $25.00 we 

set the
            // shipping cost as 10% of the price, show the 

shipping,
            // and add the price and shipping together and 

show it
            // in the total.

            // The answer is rounded to two decimal places.

            if (price > 25) {
                output = (Math.round(price * 0.1) * 100) /  100;
                shipping.value = "$" + output.toFixed(2);
                total.value = "$" + (price + output).toFixed(2);
            }
        }
    </script>
  </head>
  <body>
    <form>
        <ul>
            <li>
                <h1>Calculate Shipping</h1>
            </li>
            <li>
                <label for="price">Purchase Price:</label>
                <input type="text" id="price" size="10">
            </li>
            <li>
                <label for="shipping">Shipping:</label>
                <input type="text" id="shipping" size="10">
            </li>
            <li>
                <input type="button" value="Calculate 

Shipping"
                        onclick="calcShipping();">
                <input type="reset" value="Reset">
            </li>
            <li>
                <label for="total">Total:</label>
                <input type="text" id="total" size="10">
            </li>
        </ul>
    </form>
  </body>
</html>
share|improve this question
1  
you put style and title inside the script tag – dinodsaurus Feb 19 at 16:48
7  
We will not do your homework for you. – crush Feb 19 at 16:49
crush, seeing that I provided all the code and only asked where I went wrong doesnt constitute you doing my homework. Second of all dont make assumptions because this isnt my homework I got a javascript book from 2008 and I am doing all the exercises to learn on my own. – user2069296 Feb 20 at 2:16

closed as too localized by Martijn, KatieK, Emil, Laurent Etiemble, Andrew Feb 19 at 18:47

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

For starters, your title and style tags are inside of your tag. I suggest using the debugger in chrome (google how to use it) and then if you can't figure things out, post only specific questions about your code.

share|improve this answer
This is also where the W3C's html validator would come in handy. – Shauna Feb 19 at 17:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.