Calorie Calculator for Age and Weight

Calorie Calculator for Age and Weight – Calculate Your Daily Needs :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –light-gray: #e9ecef; –white: #fff; –error-color: #dc3545; } 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: 20px; } .container { max-width: 980px; margin: 0 auto; background-color: var(–white); padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } header { text-align: center; margin-bottom: 40px; border-bottom: 1px solid var(–light-gray); padding-bottom: 20px; } h1 { color: var(–primary-color); font-size: 2.5em; margin-bottom: 10px; } h2, h3 { color: var(–primary-color); margin-top: 30px; margin-bottom: 15px; } .intro-summary { font-size: 1.1em; color: var(–text-color); margin-bottom: 30px; text-align: center; font-weight: 500; } .calculator-wrapper { background-color: var(–white); padding: 25px; border-radius: 8px; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08); margin-bottom: 40px; } .input-group { margin-bottom: 20px; text-align: left; } .input-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(–primary-color); } .input-group input[type="number"], .input-group select { width: 100%; padding: 12px; border: 1px solid var(–light-gray); border-radius: 5px; box-sizing: border-box; font-size: 1em; color: var(–text-color); } .input-group input[type="number"]:focus, .input-group select:focus { border-color: var(–primary-color); outline: none; box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.2); } .input-group .helper-text { font-size: 0.85em; color: #6c757d; margin-top: 5px; display: block; } .error-message { color: var(–error-color); font-size: 0.85em; margin-top: 5px; display: none; /* Hidden by default */ } .button-group { display: flex; justify-content: space-between; margin-top: 25px; gap: 10px; } .calculator-button { padding: 12px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 1em; font-weight: bold; transition: background-color 0.3s ease; flex-grow: 1; text-align: center; } .calculate-button { background-color: var(–primary-color); color: var(–white); } .calculate-button:hover { background-color: #003f87; } .reset-button { background-color: var(–light-gray); color: var(–text-color); } .reset-button:hover { background-color: #ced4da; } .copy-button { background-color: var(–success-color); color: var(–white); } .copy-button:hover { background-color: #218838; } .results-container { margin-top: 30px; padding: 20px; background-color: var(–light-gray); border-radius: 8px; text-align: center; } .main-result { font-size: 2.5em; font-weight: bold; color: var(–success-color); margin-bottom: 15px; padding: 15px; background-color: #eef7f0; border: 1px solid #c8e6d0; border-radius: 5px; display: inline-block; } .intermediate-results { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 20px; padding: 15px 0; border-top: 1px solid var(–light-gray); border-bottom: 1px solid var(–light-gray); } .intermediate-item { text-align: center; padding: 10px; } .intermediate-item strong { display: block; font-size: 1.4em; color: var(–primary-color); margin-bottom: 5px; } .intermediate-item span { display: block; font-size: 0.9em; color: #6c757d; } .formula-explanation { font-size: 0.9em; color: #6c757d; margin-top: 15px; font-style: italic; } .chart-container { margin-top: 40px; padding: 25px; background-color: var(–white); border-radius: 8px; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08); } canvas { width: 100% !important; height: auto !important; display: block; margin: 0 auto; } .chart-caption { text-align: center; font-size: 0.9em; color: #6c757d; margin-top: 10px; } table { width: 100%; border-collapse: collapse; margin-top: 25px; margin-bottom: 40px; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08); } th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(–light-gray); } thead { background-color: var(–primary-color); color: var(–white); } th { font-weight: bold; } tbody tr:nth-child(even) { background-color: #f2f6fa; } .article-content { margin-top: 50px; background-color: var(–white); padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .article-content h2 { border-bottom: 2px solid var(–primary-color); padding-bottom: 5px; margin-bottom: 20px; } .article-content h3 { margin-top: 25px; margin-bottom: 10px; color: #0056b3; } .article-content p { margin-bottom: 15px; } .article-content ul, .article-content ol { margin-left: 20px; margin-bottom: 15px; } .article-content li { margin-bottom: 8px; } .faq-item { border: 1px solid var(–light-gray); border-radius: 5px; padding: 15px; margin-bottom: 15px; background-color: var(–background-color); } .faq-item strong { color: var(–primary-color); display: block; margin-bottom: 5px; font-size: 1.1em; } .internal-links-section { margin-top: 40px; padding: 25px; background-color: var(–light-gray); border-radius: 8px; } .internal-links-section h3 { color: var(–primary-color); text-align: center; margin-bottom: 20px; } .internal-links-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; } .internal-links-list li { background-color: var(–white); padding: 15px; border-radius: 5px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); text-align: center; flex-basis: 150px; } .internal-links-list a { color: var(–primary-color); text-decoration: none; font-weight: bold; display: block; margin-bottom: 5px; } .internal-links-list a:hover { text-decoration: underline; } .internal-links-list span { font-size: 0.85em; color: #6c757d; }

Calorie Calculator for Age and Weight

Calculate your estimated daily calorie needs based on your personal details and activity level.

Your age in years.
Enter weight in kilograms (kg).
Enter height in centimeters (cm).
Male Female Select your gender.
Sedentary (Little to no exercise) Lightly Active (Exercise 1-3 days/week) Moderately Active (Exercise 3-5 days/week) Very Active (Exercise 6-7 days/week) Extra Active (Very intense exercise daily, or physical job) Choose the option that best describes your lifestyle.

Your Estimated Daily Calorie Needs

— kcal
Basal Metabolic Rate (BMR)
Total Daily Energy Expenditure (TDEE)
Calories to Maintain Weight
Uses the Mifflin-St Jeor equation for BMR and then applies the activity multiplier for TDEE.

Calorie Needs vs. Activity Level

Estimated daily calorie needs for a 30-year-old, 70kg, 170cm individual at different activity levels.
Variable Meaning Unit Typical Range
Age Years since birth Years 1 – 120
Weight Body mass Kilograms (kg) 1 – 1000
Height Body height Centimeters (cm) 1 – 300
Gender Biological sex Categorical Male, Female
Activity Level Multiplier Factor representing daily energy expenditure Decimal (e.g., 1.2, 1.55) 1.2 – 1.9

What is a Calorie Calculator for Age and Weight?

A calorie calculator for age and weight is a digital tool designed to estimate the number of calories an individual needs to consume daily to maintain their current body weight. It takes into account various personal metrics such as age, weight, height, gender, and crucially, activity level. This calorie calculator for age and weight is an indispensable resource for anyone looking to manage their weight, whether for weight loss, weight gain, or simply maintaining a healthy lifestyle. It helps demystify the complex relationship between energy intake and expenditure, providing a personalized baseline for dietary planning. Understanding your daily calorie needs through a reliable calorie calculator for age and weight empowers you to make informed decisions about your nutrition.

Who Should Use It?

  • Individuals aiming for weight loss: They can use the calorie calculator for age and weight to determine a deficit.
  • People looking to gain weight: They can use it to find a caloric surplus.
  • Fitness enthusiasts and athletes: To optimize energy intake for performance and recovery.
  • Anyone interested in general health and wellness: To ensure they are meeting their basic metabolic needs.
  • Those recovering from illness or injury: To support healing and regain strength.

Common Misconceptions:

  • "All calories are equal": While the calculator focuses on quantity, the *quality* of calories (from nutrient-dense foods) significantly impacts health.
  • "These numbers are exact": This calorie calculator for age and weight provides an *estimate*. Individual metabolisms can vary.
  • "You only need to count calories": Exercise, sleep, stress, and hormonal factors also play vital roles in weight management.

Calorie Calculator for Age and Weight Formula and Mathematical Explanation

The most commonly used and scientifically validated formula for estimating daily calorie needs is the Mifflin-St Jeor equation, followed by applying an activity factor. This calorie calculator for age and weight utilizes this approach to provide accurate estimations.

Basal Metabolic Rate (BMR) Calculation

BMR is the number of calories your body burns at rest to maintain basic life functions like breathing, circulation, and cell production. The Mifflin-St Jeor equation is as follows:

  • For Men: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) + 5
  • For Women: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) – 161

Total Daily Energy Expenditure (TDEE) Calculation

TDEE represents your total daily calorie expenditure, including BMR and calories burned through physical activity and the thermic effect of food. To calculate TDEE, your BMR is multiplied by an activity level factor:

TDEE = BMR × Activity Level Multiplier

The activity level multipliers are standard estimates:

  • Sedentary: 1.2
  • Lightly Active: 1.375
  • Moderately Active: 1.55
  • Very Active: 1.725
  • Extra Active: 1.9

The primary result displayed by this calorie calculator for age and weight is your TDEE, which is the estimated number of calories you need to maintain your current weight.

Variables Table

Variable Meaning Unit Typical Range
Age Number of years a person has lived Years 1 – 120
Weight Total body mass Kilograms (kg) 1 – 1000
Height Vertical distance from base to top of head Centimeters (cm) 1 – 300
Gender Biological sex Categorical Male, Female
Activity Level Multiplier Factor accounting for daily physical activity and exercise Decimal (e.g., 1.2, 1.375) 1.2 – 1.9
BMR Calories burned at rest Kilocalories (kcal) Varies significantly with individual metrics
TDEE Total daily calorie needs Kilocalories (kcal) Varies significantly with individual metrics and activity level

Practical Examples (Real-World Use Cases)

Let's illustrate how this calorie calculator for age and weight works with two common scenarios.

Example 1: Weight Loss Goal

Scenario: Sarah is a 35-year-old woman, weighs 75 kg, is 165 cm tall, and is moderately active (exercises 3-5 times a week). She wants to lose weight.

Inputs:

  • Age: 35
  • Weight: 75 kg
  • Height: 165 cm
  • Gender: Female
  • Activity Level: Moderately Active (Multiplier: 1.55)

Calculation:

  • BMR = (10 × 75) + (6.25 × 165) – (5 × 35) – 161
  • BMR = 750 + 1031.25 – 175 – 161 = 1445.25 kcal
  • TDEE = 1445.25 × 1.55 = 2240.14 kcal

Results:

  • BMR: ~1445 kcal
  • TDEE: ~2240 kcal
  • Calories to Maintain Weight: ~2240 kcal

Interpretation: To lose weight, Sarah needs to consume fewer calories than her TDEE. A common recommendation is a deficit of 500 kcal per day for about 0.5 kg (1 lb) of weight loss per week. So, Sarah might aim for approximately 1740 kcal per day (2240 – 500).

Example 2: Weight Maintenance for an Athlete

Scenario: David is a 28-year-old male, weighs 82 kg, is 180 cm tall, and engages in very intense exercise 6-7 days a week.

Inputs:

  • Age: 28
  • Weight: 82 kg
  • Height: 180 cm
  • Gender: Male
  • Activity Level: Very Active (Multiplier: 1.725)

Calculation:

  • BMR = (10 × 82) + (6.25 × 180) – (5 × 28) + 5
  • BMR = 820 + 1125 – 140 + 5 = 1810 kcal
  • TDEE = 1810 × 1.725 = 3122.75 kcal

Results:

  • BMR: ~1810 kcal
  • TDEE: ~3123 kcal
  • Calories to Maintain Weight: ~3123 kcal

Interpretation: David needs approximately 3123 kcal per day to maintain his current weight given his high activity level. If he wanted to build muscle, he might aim for a slight surplus (e.g., 250-300 kcal) on top of this TDEE.

How to Use This Calorie Calculator for Age and Weight

Using this calorie calculator for age and weight is straightforward. Follow these simple steps:

  1. Enter Age: Input your age in years into the 'Age' field.
  2. Enter Weight: Input your current weight in kilograms (kg) into the 'Weight' field. Ensure you use the correct unit.
  3. Enter Height: Input your height in centimeters (cm) into the 'Height' field.
  4. Select Gender: Choose 'Male' or 'Female' from the dropdown menu.
  5. Select Activity Level: Carefully select the option that best describes your typical weekly physical activity and exercise routine. This is a critical factor in accurate calculation.
  6. Click 'Calculate Calories': Once all fields are completed, click the button.

How to Read Results

  • Main Result (TDEE): This is your estimated Total Daily Energy Expenditure, the total calories you burn per day to maintain your current weight.
  • Basal Metabolic Rate (BMR): This shows the calories your body burns at rest. It's a foundational metabolic rate.
  • Calories to Maintain Weight: This is essentially your TDEE, presented clearly as the target intake for weight maintenance.

Decision-Making Guidance

  • Weight Loss: To lose weight, aim to consume 250-500 kcal *less* than your TDEE per day.
  • Weight Gain: To gain weight, aim to consume 250-500 kcal *more* than your TDEE per day.
  • Weight Maintenance: Consume roughly the number of calories indicated by your TDEE.

Remember, these are starting points. Monitor your progress and adjust your intake as needed. For personalized dietary advice, consult a registered dietitian or healthcare professional.

Key Factors That Affect Calorie Calculator for Age and Weight Results

While the Mifflin-St Jeor equation and activity multipliers are robust, several other factors can influence your actual calorie needs, meaning the results from any calorie calculator for age and weight are estimates:

  1. Body Composition: Muscle tissue burns more calories at rest than fat tissue. Someone with a higher muscle mass will have a higher BMR and TDEE than someone of the same weight, age, and gender but with less muscle.
  2. Genetics: Individual genetic makeup plays a significant role in metabolic rate. Some people naturally have faster metabolisms than others.
  3. Hormonal Status: Conditions like thyroid disorders (hypothyroidism or hyperthyroidism) can significantly alter metabolic rate. Hormonal changes during puberty, pregnancy, and menopause also affect calorie needs.
  4. Medications: Certain medications can influence metabolism and appetite, thereby affecting calorie expenditure and intake requirements.
  5. Health Status and Illness: During illness, injury, or recovery, the body's energy demands can increase to support healing processes. Conversely, some conditions might reduce energy needs.
  6. Environmental Temperature: Extreme cold or heat can slightly increase calorie expenditure as the body works to maintain its core temperature.
  7. Dietary Thermogenesis (Thermic Effect of Food – TEF): While the activity multiplier is a general factor, different macronutrients have varying thermic effects. Protein, for instance, requires more energy to digest than fats or carbohydrates.
  8. Sleep Quality and Quantity: Poor sleep can disrupt hormones that regulate appetite (ghrelin and leptin) and may lead to increased cravings and a reduced metabolic rate, although the direct impact on TDEE is complex.

Frequently Asked Questions (FAQ)

Q1: How accurate is this calorie calculator for age and weight?

A: This calorie calculator for age and weight uses the widely accepted Mifflin-St Jeor equation, which is considered one of the most accurate predictive equations for BMR. However, it's an estimate. Individual metabolism can vary due to genetics, body composition, and other factors not included in basic calculations.

Q2: Should I use a deficit or surplus for weight loss/gain?

A: For weight loss, you need a caloric deficit (consuming fewer calories than your TDEE). For weight gain, you need a caloric surplus (consuming more calories than your TDEE). Aim for moderate changes (e.g., 250-500 kcal difference) for sustainable results.

Q3: What if my weight fluctuates daily? Which weight should I use?

A: It's best to use your average weight over a week or two, or your weight first thing in the morning after waking up and before eating or drinking. Small daily fluctuations are normal and usually due to water retention.

Q4: Does the activity level multiplier accurately reflect my exercise?

A: The multipliers are general estimates. If you have a very demanding physical job *and* exercise intensely, you might be closer to the "Extra Active" category. Conversely, if you exercise 3 times a week but have a desk job, "Lightly Active" might be more appropriate. Adjust based on your overall daily movement.

Q5: Can I eat whatever I want as long as it fits my calorie target?

A: While calories are key for weight management, the *quality* of your diet is crucial for overall health, energy levels, and nutrient intake. Focus on whole, nutrient-dense foods.

Q6: What is the difference between BMR and TDEE?

A: BMR is the energy your body needs to function at complete rest. TDEE is your BMR plus all the calories you burn throughout the day from physical activity, digestion, etc. TDEE is the number you should use as a reference for weight management goals.

Q7: How often should I recalculate my calorie needs?

A: Recalculate your calorie needs if there's a significant change in your weight (e.g., 5-10 kg), activity level, or major life events like pregnancy. Otherwise, recalculating every 6-12 months or when you hit a plateau is reasonable.

Q8: Does this calorie calculator for age and weight account for muscle gain goals?

A: The calculator provides your maintenance calories (TDEE). To gain muscle, you typically need to eat slightly above your TDEE (a caloric surplus), alongside a proper strength training program. This calculator gives you the baseline TDEE from which to build your surplus.

function validateInput(id, errorId, minValue, maxValue, message) { var input = document.getElementById(id); var errorElement = document.getElementById(errorId); var value = parseFloat(input.value); if (isNaN(value) || value === "") { errorElement.textContent = "This field is required."; errorElement.style.display = "block"; return false; } else if (value maxValue) { errorElement.textContent = message; errorElement.style.display = "block"; return false; } else { errorElement.textContent = ""; errorElement.style.display = "none"; return true; } } function calculateCalories() { var ageValid = validateInput('age', 'ageError', 1, 120, 'Age must be between 1 and 120 years.'); var weightValid = validateInput('weight', 'weightError', 1, 1000, 'Weight must be between 1 and 1000 kg.'); var heightValid = validateInput('height', 'heightError', 1, 300, 'Height must be between 1 and 300 cm.'); if (!ageValid || !weightValid || !heightValid) { document.getElementById('mainResult').textContent = '– kcal'; document.getElementById('bmrResult').textContent = '–'; document.getElementById('tdeeResult').textContent = '–'; document.getElementById('caloriesToMaintain').textContent = '–'; updateChart([], []); // Clear chart return; } var age = parseFloat(document.getElementById('age').value); var weight = parseFloat(document.getElementById('weight').value); var height = parseFloat(document.getElementById('height').value); var gender = document.getElementById('gender').value; var activityLevel = parseFloat(document.getElementById('activityLevel').value); var bmr = 0; if (gender === 'male') { bmr = (10 * weight) + (6.25 * height) – (5 * age) + 5; } else { // female bmr = (10 * weight) + (6.25 * height) – (5 * age) – 161; } var tdee = bmr * activityLevel; var caloriesToMaintain = tdee; document.getElementById('bmrResult').textContent = Math.round(bmr) + ' kcal'; document.getElementById('tdeeResult').textContent = Math.round(tdee) + ' kcal'; document.getElementById('caloriesToMaintain').textContent = Math.round(caloriesToMaintain) + ' kcal'; document.getElementById('mainResult').textContent = Math.round(tdee) + ' kcal'; updateChart(age, weight, height, gender); } function resetCalculator() { document.getElementById('age').value = '30'; document.getElementById('weight').value = '70'; document.getElementById('height').value = '170'; document.getElementById('gender').value = 'male'; document.getElementById('activityLevel').value = '1.55'; document.getElementById('ageError').textContent = "; document.getElementById('ageError').style.display = 'none'; document.getElementById('weightError').textContent = "; document.getElementById('weightError').style.display = 'none'; document.getElementById('heightError').textContent = "; document.getElementById('heightError').style.display = 'none'; calculateCalories(); // Recalculate with defaults } function copyResults() { var mainResult = document.getElementById('mainResult').textContent; var bmrResult = document.getElementById('bmrResult').textContent; var tdeeResult = document.getElementById('tdeeResult').textContent; var maintainResult = document.getElementById('caloriesToMaintain').textContent; var age = document.getElementById('age').value; var weight = document.getElementById('weight').value; var height = document.getElementById('height').value; var gender = document.getElementById('gender').options[document.getElementById('gender').selectedIndex].text; var activityLevelText = document.getElementById('activityLevel').options[document.getElementById('activityLevel').selectedIndex].text; var resultText = "— Daily Calorie Needs —\n"; resultText += "Estimated TDEE (Maintain Weight): " + mainResult + "\n"; resultText += "Basal Metabolic Rate (BMR): " + bmrResult + "\n"; resultText += "Total Daily Energy Expenditure (TDEE): " + tdeeResult + "\n"; resultText += "Calories to Maintain Weight: " + maintainResult + "\n\n"; resultText += "— Input Details —\n"; resultText += "Age: " + age + " years\n"; resultText += "Weight: " + weight + " kg\n"; resultText += "Height: " + height + " cm\n"; resultText += "Gender: " + gender + "\n"; resultText += "Activity Level: " + activityLevelText + "\n\n"; resultText += "Formula Used: Mifflin-St Jeor equation for BMR, multiplied by activity level for TDEE."; navigator.clipboard.writeText(resultText).then(function() { alert('Results copied to clipboard!'); }, function(err) { console.error('Failed to copy results: ', err); alert('Failed to copy results. Please copy manually.'); }); } // Charting Logic var calorieChartInstance = null; // Global variable to hold chart instance function updateChart(age, weight, height, gender) { var ctx = document.getElementById('calorieChart').getContext('2d'); // Define typical parameters if not provided (e.g., on initial load) var chartAge = typeof age === 'number' ? age : 30; var chartWeight = typeof weight === 'number' ? weight : 70; var chartHeight = typeof height === 'number' ? height : 170; var chartGender = typeof gender === 'string' ? gender : 'male'; var activityLevels = [ { name: 'Sedentary', multiplier: 1.2 }, { name: 'Lightly Active', multiplier: 1.375 }, { name: 'Moderately Active', multiplier: 1.55 }, { name: 'Very Active', multiplier: 1.725 }, { name: 'Extra Active', multiplier: 1.9 } ]; var chartLabels = []; var chartData = []; for (var i = 0; i < activityLevels.length; i++) { var level = activityLevels[i]; chartLabels.push(level.name); var bmrForLevel; if (chartGender === 'male') { bmrForLevel = (10 * chartWeight) + (6.25 * chartHeight) – (5 * chartAge) + 5; } else { // female bmrForLevel = (10 * chartWeight) + (6.25 * chartHeight) – (5 * chartAge) – 161; } var tdeeForLevel = bmrForLevel * level.multiplier; chartData.push(Math.round(tdeeForLevel)); } // Destroy existing chart if it exists to prevent memory leaks and issues if (calorieChartInstance) { calorieChartInstance.destroy(); } // Create new chart calorieChartInstance = new Chart(ctx, { type: 'bar', data: { labels: chartLabels, datasets: [{ label: 'Estimated Daily Calories (kcal)', data: chartData, backgroundColor: 'rgba(0, 74, 153, 0.6)', // Primary color borderColor: 'rgba(0, 74, 153, 1)', borderWidth: 1 }] }, options: { scales: { y: { beginAtZero: true, title: { display: true, text: 'Kilocalories (kcal)' } }, x: { title: { display: true, text: 'Activity Level' } } }, responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false // Single dataset, legend not essential }, tooltip: { callbacks: { label: function(context) { var label = context.dataset.label || ''; if (label) { label += ': '; } if (context.parsed.y !== null) { label += context.parsed.y + ' kcal'; } return label; } } } } } }); } // Initial chart load with default values document.addEventListener('DOMContentLoaded', function() { resetCalculator(); // Set initial values and calculate updateChart(); // Ensure chart is drawn on load }); // Add Chart.js library if not already present // For this self-contained HTML, we need to ensure Chart.js is available. // In a real WP setup, you'd enqueue this script properly. // For this direct HTML output, we'll assume it's loaded or add it via CDN. // IMPORTANT: For a production environment, load Chart.js using a script tag // or by enqueuing it in WordPress. This inline example assumes it's available. // For completeness in this single file, we'll add a CDN link, though this is // generally discouraged for production in favor of proper enqueuing. var script = document.createElement('script'); script.src = 'https://cdn.jsdelivr.net/npm/chart.js@3.9.1/dist/chart.min.js'; document.head.appendChild(script);

Leave a Comment