I am trying to create a monthly mortgage calculator, I have been able to make it show prompts for Amount of loan; Interest rate; and Term of loan (in months), but it will not display the results. Below is the code I have utilized to get this far. Any and all help will be appreciated.
<body>
<!output the name, date, time header, with a horizontal line between this heading and the
body of the web page>
<script language="JavaScript">
document.write('<center><h3>--David Brown--');
myDate=new Date();
document.write(myDate.toLocaleString());
document.write('</h3></center><hr>');
</script><br>
<body>
<html>
<script type="text/javascript">
loan=prompt("Amount of loan","");
interest_rate=prompt("Annual interest rate (%)","");
months=prompt("Term of loan (months)","");
The first thing I suggest you do is to get rid of all the prompt() calls which are mainly intended for debugging and in some browsers have a disable JavaScript option at the bottom.
I'd also suggest that you get rid of all the document.write statements and use one of innerHTML, the standard DOM calls, or a form in the web page itself instead.
You should also change that language=JavaScript" reference to type="text/javascript".
Bookmarks