bin_P19 P wrote:
Quote:
the code i have got is as follows and now im stuck
snip
|
- you're missing a lot of semicolons.
- there's a lot of content in <th>'s that I think belongs in <td>'s.
- I've been told here that language is no longer used, so:
<script type="text/javascript">
- too many double-quotes in this line:
<h1 align="center" class="style"2">
- the (only) form is closed twice:
</form>
<p> </p>
</form>
- you have 2 arrays containing month names:
MonthName, months
- combine price/item functions:
function updatePricing(objSelect,objSelectIndex) {
var ds=objSelect[objSelectIndex];
addValues(ds.text,ds.value);
}
- consider moving code from updatePricing to addValues
- forgot a ">":
"<h2>Today is " ... ".<\/h2"
There were more changes, I sent a revised version of you page to your
email address.
Mike