Cd Intrest Calculator

CD Interest Calculator: Calculate Your Certificate of Deposit Earnings :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ddd; –card-background: #fff; –shadow: 0 2px 5px rgba(0,0,0,0.1); } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); line-height: 1.6; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; padding-top: 20px; padding-bottom: 40px; } .container { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; } header { background-color: var(–primary-color); color: white; padding: 20px 0; text-align: center; width: 100%; margin-bottom: 30px; } header h1 { margin: 0; font-size: 2.5em; font-weight: 700; } main { width: 100%; display: flex; flex-direction: column; align-items: center; } .calculator-wrapper { background-color: var(–card-background); border-radius: 8px; box-shadow: var(–shadow); padding: 30px; margin-bottom: 40px; width: 100%; box-sizing: border-box; } .calculator-wrapper h2 { text-align: center; color: var(–primary-color); margin-top: 0; margin-bottom: 25px; font-size: 1.8em; } .loan-calc-container { display: flex; flex-direction: column; gap: 20px; } .input-group { display: flex; flex-direction: column; gap: 8px; } .input-group label { font-weight: 600; color: var(–primary-color); } .input-group input[type="number"], .input-group select { padding: 12px 15px; border: 1px solid var(–border-color); border-radius: 5px; font-size: 1em; box-sizing: border-box; width: 100%; } .input-group input[type="number"]:focus, .input-group select:focus { outline: none; border-color: var(–primary-color); box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.2); } .input-group .helper-text { font-size: 0.85em; color: #666; } .error-message { color: red; font-size: 0.85em; margin-top: 5px; display: none; /* Hidden by default */ } .button-group { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; } .button-group button { padding: 12px 25px; border: none; border-radius: 5px; font-size: 1em; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; flex-grow: 1; min-width: 150px; } .btn-calculate { background-color: var(–primary-color); color: white; } .btn-calculate:hover { background-color: #003366; transform: translateY(-1px); } .btn-reset { background-color: #6c757d; color: white; } .btn-reset:hover { background-color: #5a6268; transform: translateY(-1px); } .btn-copy { background-color: #ffc107; color: #212529; } .btn-copy:hover { background-color: #e0a800; transform: translateY(-1px); } .results-container { background-color: var(–card-background); border-radius: 8px; box-shadow: var(–shadow); padding: 30px; margin-top: 40px; width: 100%; box-sizing: border-box; display: flex; flex-direction: column; gap: 25px; } .results-container h3 { color: var(–primary-color); margin-top: 0; text-align: center; font-size: 1.6em; } .primary-result { background-color: var(–success-color); color: white; padding: 20px; border-radius: 5px; text-align: center; font-size: 1.8em; font-weight: 700; box-shadow: inset 0 0 10px rgba(0,0,0,0.2); } .intermediate-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; } .intermediate-results div { background-color: var(–background-color); padding: 15px; border-radius: 5px; border: 1px solid var(–border-color); } .intermediate-results div strong { display: block; font-size: 1.2em; color: var(–primary-color); margin-bottom: 5px; } .formula-explanation { font-size: 0.9em; color: #555; text-align: center; margin-top: 10px; } .chart-container, .table-container { background-color: var(–card-background); border-radius: 8px; box-shadow: var(–shadow); padding: 30px; margin-top: 40px; width: 100%; box-sizing: border-box; } .chart-container h3, .table-container h3 { color: var(–primary-color); margin-top: 0; text-align: center; font-size: 1.6em; margin-bottom: 20px; } canvas { width: 100% !important; height: auto !important; display: block; margin: 0 auto; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(–border-color); } thead th { background-color: var(–primary-color); color: white; font-weight: 600; } tbody tr:nth-child(even) { background-color: var(–background-color); } tbody td { font-size: 0.95em; } .article-section { background-color: var(–card-background); border-radius: 8px; box-shadow: var(–shadow); padding: 30px; margin-top: 40px; width: 100%; box-sizing: border-box; } .article-section h2 { color: var(–primary-color); font-size: 2em; margin-top: 0; margin-bottom: 20px; border-bottom: 2px solid var(–primary-color); padding-bottom: 10px; } .article-section h3 { color: var(–primary-color); font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; } .article-section p, .article-section ul, .article-section ol { margin-bottom: 20px; font-size: 1.05em; } .article-section ul, .article-section ol { padding-left: 25px; } .article-section li { margin-bottom: 10px; } .faq-item { margin-bottom: 20px; padding: 15px; background-color: var(–background-color); border-radius: 5px; border: 1px solid var(–border-color); } .faq-item strong { display: block; color: var(–primary-color); font-size: 1.1em; margin-bottom: 8px; } .faq-item p { margin-bottom: 0; font-size: 1em; } .related-links { list-style: none; padding: 0; } .related-links li { margin-bottom: 15px; } .related-links a { color: var(–primary-color); text-decoration: none; font-weight: 600; font-size: 1.1em; } .related-links a:hover { text-decoration: underline; } .related-links span { display: block; font-size: 0.9em; color: #555; margin-top: 5px; } .highlight { background-color: var(–success-color); color: white; padding: 2px 5px; border-radius: 3px; font-weight: bold; } .text-center { text-align: center; } .variable-table { width: 100%; border-collapse: collapse; margin-top: 20px; } .variable-table th, .variable-table td { padding: 10px 12px; text-align: left; border: 1px solid var(–border-color); } .variable-table th { background-color: var(–primary-color); color: white; } .variable-table td { background-color: var(–card-background); } .variable-table tr:nth-child(even) td { background-color: var(–background-color); } .variable-table td:first-child { font-weight: bold; color: var(–primary-color); } @media (min-width: 768px) { .button-group { justify-content: flex-end; } .button-group button { flex-grow: 0; } }

CD Interest Calculator

Estimate your Certificate of Deposit earnings with ease.

Calculate Your CD Returns

Enter the total amount you plan to deposit into the CD.
Enter the APY as a percentage (e.g., 4.5 for 4.5%).
Enter the duration of the CD in months.
Annually Semi-Annually Quarterly Monthly Daily How often the interest is calculated and added to the principal.

Your Estimated CD Earnings

Interest is compounded based on the APY, term, and compounding frequency.

Growth Over Time

Chart shows the growth of your CD balance over its term.

Yearly Breakdown

Year Starting Balance Interest Earned Ending Balance

What is a CD Interest Calculator?

A CD interest calculator is a valuable online tool designed to help individuals estimate the potential earnings from a Certificate of Deposit (CD). CDs are a type of savings account offered by banks and credit unions that typically offer a higher interest rate than traditional savings accounts in exchange for the depositor agreeing to leave their money untouched for a fixed period, known as the term. This calculator simplifies the complex process of compound interest calculation, allowing users to input key details about their intended CD investment and receive an immediate projection of their returns.

This tool is particularly useful for:

  • Savers planning for short-to-medium term goals: Whether saving for a down payment, a vacation, or another financial objective, understanding potential CD growth helps in setting realistic timelines.
  • Investors seeking predictable returns: Unlike market-based investments, CDs offer a guaranteed rate of return, making them attractive for risk-averse individuals.
  • Anyone comparing different CD offers: By inputting the same principal, term, and APY into the calculator for various bank offers, users can easily compare which CD will yield the most interest.

Common Misconceptions about CDs and Interest

One common misconception is that all savings accounts offer similar rates. In reality, CDs often provide significantly higher Annual Percentage Yields (APYs) than standard savings accounts. Another misunderstanding is around how interest is calculated; many assume simple interest, but most CDs utilize compound interest, where earned interest also starts earning interest, accelerating growth over time. This CD interest calculator helps illustrate the power of compounding.

CD Interest Calculator Formula and Mathematical Explanation

The core of the CD interest calculator lies in the compound interest formula, adapted for specific compounding frequencies. The most common formula used is the future value of an investment with compound interest:

FV = P (1 + r/n)^(nt)

Where:

  • FV is the Future Value of the investment/loan, including interest.
  • P is the Principal amount (the initial amount of money deposited).
  • r is the annual interest rate (as a decimal).
  • n is the number of times that interest is compounded per year.
  • t is the number of years the money is invested or borrowed for.

Adapting for CD Terms

For our CD interest calculator, we use the APY (Annual Percentage Yield) provided, which already accounts for compounding within a year. However, to calculate the exact interest earned over a specific term (which might not be a whole number of years), we often use a slightly modified approach or a more granular compounding calculation. The calculator effectively breaks down the total term into compounding periods.

The calculator calculates the interest earned per compounding period and adds it to the principal. The formula used internally by the calculator for each period is:

Balance_next = Balance_current * (1 + (Annual_APY / 100) / Compounding_Frequency)

The total interest earned is then the final balance minus the initial principal.

Variables Used in Calculation

Variable Meaning Unit Typical Range
P (Principal) The initial amount deposited into the CD. Currency (e.g., USD) $100 – $1,000,000+
APY (Annual Percentage Yield) The effective annual rate of return, taking compounding into account. Percentage (%) 0.1% – 10%+
Term (Months) The fixed duration of the CD. Months 1 – 60+
n (Compounding Frequency) Number of times interest is compounded per year. Times per year 1 (Annually), 2 (Semi-Annually), 4 (Quarterly), 12 (Monthly), 365 (Daily)
Total Interest Earned The total amount of interest accumulated over the CD term. Currency (e.g., USD) Calculated
Final Balance The total value of the CD at the end of the term (Principal + Interest). Currency (e.g., USD) Calculated

Practical Examples (Real-World Use Cases)

Example 1: Saving for a Down Payment

Sarah wants to save for a down payment on a house. She has $20,000 available and finds a 24-month CD with an APY of 4.75%, compounded monthly. She uses the CD interest calculator to see how much her savings will grow.

Inputs:

  • Initial Deposit: $20,000
  • Annual APY: 4.75%
  • Term Length: 24 Months
  • Compounding Frequency: Monthly (12)

Estimated Results:

  • Total Interest Earned: Approximately $1,958.78
  • Final Balance: Approximately $21,958.78

Financial Interpretation: Sarah's $20,000 deposit will grow to over $21,900 in two years, providing a substantial boost to her down payment fund thanks to the consistent, compounded interest from the CD.

Example 2: Short-Term Goal with Higher APY

Mark has $5,000 he wants to invest for 12 months while he waits for a better stock market opportunity. He finds a CD offering a competitive APY of 5.20%, compounded daily.

Inputs:

  • Initial Deposit: $5,000
  • Annual APY: 5.20%
  • Term Length: 12 Months
  • Compounding Frequency: Daily (365)

Estimated Results:

  • Total Interest Earned: Approximately $270.97
  • Final Balance: Approximately $5,270.97

Financial Interpretation: Mark earns over $270 in interest on his $5,000 investment within a year. This example highlights how even relatively short-term CDs can provide a decent return, especially with higher APYs and more frequent compounding.

How to Use This CD Interest Calculator

Using the CD interest calculator is straightforward. Follow these simple steps to get an accurate estimate of your potential CD earnings:

  1. Enter Initial Deposit: In the "Initial Deposit Amount" field, type the exact amount you plan to invest in the Certificate of Deposit.
  2. Input Annual APY: Enter the Annual Percentage Yield (APY) offered by the bank or credit union. Remember to input it as a percentage (e.g., type '4.5' for 4.5%).
  3. Specify Term Length: Enter the duration of the CD in months. For example, a 1-year CD would be '12', a 5-year CD would be '60'.
  4. Select Compounding Frequency: Choose how often the interest will be calculated and added to your principal from the dropdown menu (Annually, Semi-Annually, Quarterly, Monthly, or Daily).
  5. Click Calculate: Once all fields are filled, click the "Calculate" button.

Reading the Results

After clicking "Calculate," the calculator will display:

  • Primary Result (Total Interest Earned): This is the most prominent figure, showing the total amount of interest you can expect to earn over the entire term of the CD.
  • Final Balance: This shows the total value of your investment at the end of the CD term (your initial deposit plus all the earned interest).
  • Total Principal: This simply reiterates your initial deposit amount.
  • Total Interest Rate: This might show the effective APY or a summary of the rate applied.
  • Yearly Breakdown Table: Provides a year-by-year view of your CD's growth, showing the starting balance, interest earned, and ending balance for each year.
  • Growth Over Time Chart: A visual representation of how your CD balance increases over the term.

Decision-Making Guidance

The results from this CD interest calculator can help you make informed decisions. Compare the projected interest earnings against your financial goals. If the returns are lower than expected, you might consider looking for CDs with higher APYs, longer terms (if appropriate for your goals), or different compounding frequencies. Remember to also factor in potential early withdrawal penalties if there's a chance you might need access to the funds before the term ends.

Key Factors That Affect CD Interest Results

Several factors significantly influence the amount of interest you earn on a Certificate of Deposit. Understanding these can help you maximize your returns:

  1. Annual Percentage Yield (APY): This is the most crucial factor. A higher APY directly translates to higher interest earnings. Banks adjust APYs based on market conditions, their own funding needs, and the CD's term length. Always compare APYs across different institutions.
  2. Term Length: Generally, longer-term CDs tend to offer higher APYs than shorter-term ones, as you are committing your funds for a longer period. However, this isn't always the case, and market conditions can create "yield curve inversions" where shorter terms pay more. The CD interest calculator helps visualize this trade-off.
  3. Compounding Frequency: While APY already accounts for compounding, understanding the frequency (daily, monthly, quarterly, etc.) helps grasp the mechanics. More frequent compounding means interest is calculated and added to the principal more often, leading to slightly higher earnings over time due to the effect of earning interest on interest sooner. Daily compounding typically yields the most.
  4. Initial Deposit Amount (Principal): The larger your initial deposit, the more interest you will earn in absolute dollar amounts, assuming the same APY and term. A $10,000 deposit will earn twice the interest of a $5,000 deposit at the same rate.
  5. Inflation: While not directly part of the calculation, inflation erodes the purchasing power of your money. A CD's APY needs to be higher than the inflation rate to achieve a positive *real* return (i.e., increase your purchasing power). If inflation is 5% and your CD yields 4%, you are losing purchasing power.
  6. Taxes: Interest earned on CDs is typically taxable income at the federal and state levels (unless held in a tax-advantaged account like an IRA). This reduces your net return. The calculator shows gross earnings; you'll need to account for taxes separately.
  7. Early Withdrawal Penalties: CDs are designed for funds to remain untouched. If you withdraw money before the maturity date, you'll usually face a penalty, often equivalent to a certain number of months' interest. This penalty can significantly reduce or even eliminate the interest you've earned, and in some cases, you might lose a portion of your principal.

Frequently Asked Questions (FAQ)

Q1: What is the difference between APY and interest rate?

APY (Annual Percentage Yield) reflects the total amount of interest you will earn in a year, including the effect of compounding. A simple interest rate doesn't account for compounding. For CDs, APY is the more important figure as it shows the effective annual return.

Q2: Can I add more money to my CD after the initial deposit?

Generally, no. Most CDs are fixed-term investments where you deposit a lump sum at the beginning. If you want to invest more, you typically need to open a new CD or choose a different savings product like an add-on CD if available.

Q3: What happens when my CD matures?

When your CD reaches its maturity date, the bank will typically give you a grace period (usually 7-10 days) to decide what to do. If you don't act, the CD will usually automatically renew for another term of the same length at the prevailing interest rate at that time.

Q4: How do I avoid early withdrawal penalties?

The best way is to only invest money in a CD that you are certain you won't need until the maturity date. If you anticipate needing the funds, consider a shorter CD term or a more liquid savings account. Always check the specific penalty terms before opening a CD.

Q5: Are CD earnings taxable?

Yes, in most cases, the interest earned from a CD is considered taxable income by the IRS and your state. You'll receive a Form 1099-INT from your bank reporting the interest earned. You can choose to have taxes withheld upfront, or pay them when you file your annual tax return.

Q6: Can I use this calculator for multiple CDs?

While this calculator is designed for a single CD, you can use it multiple times to estimate earnings for different CDs. To calculate the total interest from multiple CDs, simply sum the individual interest amounts calculated for each CD.

Q7: What is a "no-penalty" CD?

A no-penalty CD, also known as a liquid CD, allows you to withdraw your interest earnings and/or principal without incurring a penalty after an initial period (e.g., 7 days). These often come with slightly lower APYs compared to traditional CDs.

Q8: How does the compounding frequency affect the final amount?

More frequent compounding (e.g., daily vs. annually) leads to slightly higher earnings because the interest earned is added to the principal more often, allowing it to start earning interest sooner. The difference might be small for short terms or low rates but can become more noticeable over longer periods.

Related Tools and Internal Resources

© 2023 Your Financial Website. All rights reserved.

var principalInput = document.getElementById('principal'); var annualRateInput = document.getElementById('annualRate'); var termMonthsInput = document.getElementById('termMonths'); var compoundingFrequencyInput = document.getElementById('compoundingFrequency'); var resultsSection = document.getElementById('resultsSection'); var totalInterestEarnedOutput = document.getElementById('totalInterestEarned'); var finalBalanceOutput = document.getElementById('finalBalance'); var totalPrincipalOutput = document.getElementById('totalPrincipal'); var totalInterestRateOutput = document.getElementById('totalInterestRate'); var cdTableBody = document.querySelector('#cdTable tbody'); var cdGrowthChartCanvas = document.getElementById('cdGrowthChart'); var chartInstance = null; var principalError = document.getElementById('principalError'); var annualRateError = document.getElementById('annualRateError'); var termMonthsError = document.getElementById('termMonthsError'); function validateInput(inputElement, errorElement, minValue, maxValue, fieldName) { var value = parseFloat(inputElement.value); var isValid = true; errorElement.style.display = 'none'; errorElement.textContent = "; if (isNaN(value) || inputElement.value.trim() === ") { errorElement.textContent = fieldName + ' is required.'; errorElement.style.display = 'block'; isValid = false; } else if (value maxValue) { errorElement.textContent = fieldName + ' cannot be more than ' + maxValue.toLocaleString() + '.'; errorElement.style.display = 'block'; isValid = false; } return isValid; } function calculateCDInterest() { var principalValid = validateInput(principalInput, principalError, 0, undefined, 'Initial Deposit Amount'); var annualRateValid = validateInput(annualRateInput, annualRateError, 0, 100, 'Annual APY'); var termMonthsValid = validateInput(termMonthsInput, termMonthsError, 1, undefined, 'Term Length'); if (!principalValid || !annualRateValid || !termMonthsValid) { resultsSection.style.display = 'none'; return; } var principal = parseFloat(principalInput.value); var annualRate = parseFloat(annualRateInput.value); var termMonths = parseInt(termMonthsInput.value); var compoundingFrequency = parseInt(compoundingFrequencyInput.value); var monthlyRate = (annualRate / 100) / compoundingFrequency; var numPeriods = termMonths; var currentBalance = principal; var totalInterest = 0; var yearlyData = {}; var chartData = []; for (var i = 0; i 1) { yearlyData[currentYear].startBalance = yearlyData[currentYear – 1].endBalance; } chartData.push({ month: i + 1, balance: currentBalance, interest: yearlyData[currentYear].interestEarned }); } else if (i === termMonths – 1) { // Last month chartData.push({ month: i + 1, balance: currentBalance, interest: yearlyData[currentYear].interestEarned }); } } // Ensure the last year's start balance is correctly set if term is not a multiple of 12 if (termMonths % 12 !== 0 && termMonths > 12) { var lastFullYear = Math.floor(termMonths / 12); if (yearlyData[lastFullYear + 1]) { yearlyData[lastFullYear + 1].startBalance = yearlyData[lastFullYear].endBalance; } } totalInterestEarnedOutput.textContent = formatCurrency(totalInterest); finalBalanceOutput.textContent = "Final Balance: " + formatCurrency(currentBalance); totalPrincipalOutput.textContent = "Initial Deposit: " + formatCurrency(principal); totalInterestRateOutput.textContent = "Effective APY: " + annualRate.toFixed(2) + "%"; resultsSection.style.display = 'flex'; // Populate Table cdTableBody.innerHTML = "; var currentYear = 1; var yearStartBalance = principal; for (var year = 1; year <= Math.ceil(termMonths / 12); year++) { var yearEndMonth = Math.min(year * 12, termMonths); var yearInterest = 0; var yearEndBalance = yearStartBalance; // Calculate interest for the specific year var tempBalance = yearStartBalance; for (var month = (year – 1) * 12; month 'Month ' + item.month); var balances = data.map(item => item.balance); chartInstance = new Chart(ctx, { type: 'line', data: { labels: labels, datasets: [{ label: 'Total Balance ($)', data: balances, borderColor: 'var(–primary-color)', backgroundColor: 'rgba(0, 74, 153, 0.1)', fill: true, tension: 0.1 }] }, options: { responsive: true, maintainAspectRatio: false, scales: { y: { beginAtZero: true, ticks: { callback: function(value) { return '$' + value.toLocaleString(); } } } }, plugins: { tooltip: { callbacks: { label: function(context) { var label = context.dataset.label || "; if (label) { label += ': '; } if (context.parsed.y !== null) { label += '$' + context.parsed.y.toLocaleString(); } return label; } } } } } }); } function formatCurrency(amount) { return '$' + amount.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); } function resetCalculator() { principalInput.value = '10000'; annualRateInput.value = '4.5'; termMonthsInput.value = '12'; compoundingFrequencyInput.value = '12'; // Default to Monthly principalError.textContent = "; principalError.style.display = 'none'; annualRateError.textContent = "; annualRateError.style.display = 'none'; termMonthsError.textContent = "; termMonthsError.style.display = 'none'; resultsSection.style.display = 'none'; if (chartInstance) { chartInstance.destroy(); chartInstance = null; } cdTableBody.innerHTML = "; } function copyResults() { var principal = parseFloat(principalInput.value); var annualRate = parseFloat(annualRateInput.value); var termMonths = parseInt(termMonthsInput.value); var compoundingFrequency = parseInt(compoundingFrequencyInput.value); var totalInterest = parseFloat(totalInterestEarnedOutput.textContent.replace(/[^0-9.-]+/g,"")); var finalBalance = parseFloat(finalBalanceOutput.textContent.replace(/[^0-9.-]+/g,"")); var assumptions = [ "Initial Deposit: " + formatCurrency(principal), "Annual APY: " + annualRate.toFixed(2) + "%", "Term Length: " + termMonths + " months", "Compounding Frequency: " + compoundingFrequencyInput.options[compoundingFrequencyInput.selectedIndex].text ]; var resultsText = "— CD Interest Calculation Results —\n\n"; resultsText += "Total Interest Earned: " + formatCurrency(totalInterest) + "\n"; resultsText += "Final Balance: " + formatCurrency(finalBalance) + "\n"; resultsText += "\n— Key Assumptions —\n"; resultsText += assumptions.join("\n"); // Copy to clipboard var textArea = document.createElement("textarea"); textArea.value = resultsText; textArea.style.position = "fixed"; textArea.style.left = "-9999px"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'Results copied!' : 'Copy failed!'; alert(msg); } catch (err) { alert('Oops, unable to copy'); } document.body.removeChild(textArea); } // Initial calculation on load if values are present, or reset document.addEventListener('DOMContentLoaded', function() { resetCalculator(); // Set default values and clear results // Optionally, trigger calculation if default values are meant to be shown immediately // calculateCDInterest(); }); // Add event listeners for real-time updates (optional, but good UX) principalInput.addEventListener('input', calculateCDInterest); annualRateInput.addEventListener('input', calculateCDInterest); termMonthsInput.addEventListener('input', calculateCDInterest); compoundingFrequencyInput.addEventListener('change', calculateCDInterest); // Need Chart.js library for the chart // Include this script tag in your HTML or before the closing tag: // // For this standalone HTML, we'll assume Chart.js is available globally. // If not, you'd need to include it. For this example, I'll add a placeholder comment. // NOTE: For a production environment, ensure Chart.js is properly included. // Example: <!– –>

Leave a Comment