Delhivery Volumetric Weight Calculator

Delhivery Volumetric Weight Calculator – Calculate Shipping Costs :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ddd; –shadow-color: rgba(0, 0, 0, 0.1); –input-border-color: #ccc; –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: 0; } .container { max-width: 1000px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); } h1, h2, h3 { color: var(–primary-color); text-align: center; margin-bottom: 20px; } h1 { font-size: 2.5em; } h2 { font-size: 1.8em; margin-top: 30px; border-bottom: 2px solid var(–primary-color); padding-bottom: 10px; } h3 { font-size: 1.4em; margin-top: 25px; } .loan-calc-container { background-color: #f0f2f5; padding: 30px; border-radius: 8px; margin-bottom: 30px; border: 1px solid var(–border-color); } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(–primary-color); } .input-group input[type="number"], .input-group input[type="text"], .input-group select { width: calc(100% – 20px); padding: 12px; border: 1px solid var(–input-border-color); border-radius: 5px; box-sizing: border-box; font-size: 1em; color: var(–text-color); } .input-group input[type="number"]:focus, .input-group input[type="text"]:focus, .input-group select:focus { outline: none; border-color: var(–primary-color); box-shadow: 0 0 0 3px 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: 8px; display: none; /* Hidden by default */ } .button-group { display: flex; justify-content: space-between; margin-top: 25px; gap: 10px; } .btn { padding: 12px 25px; border: none; border-radius: 5px; font-size: 1em; font-weight: bold; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; flex: 1; /* Distribute space evenly */ text-align: center; } .btn-primary { background-color: var(–primary-color); color: white; } .btn-primary:hover { background-color: #003366; transform: translateY(-2px); } .btn-secondary { background-color: #6c757d; color: white; } .btn-secondary:hover { background-color: #5a6268; transform: translateY(-2px); } .btn-success { background-color: var(–success-color); color: white; flex: 0 0 auto; /* Prevent success button from stretching */ } .btn-success:hover { background-color: #218838; transform: translateY(-2px); } #results { margin-top: 30px; padding: 25px; background-color: #e9ecef; border-radius: 8px; border: 1px solid var(–border-color); } #results h3 { margin-top: 0; color: var(–primary-color); text-align: left; } .result-item { margin-bottom: 15px; font-size: 1.1em; } .result-label { font-weight: bold; color: var(–primary-color); display: block; } .result-value { font-size: 1.3em; font-weight: bold; color: var(–primary-color); } .primary-result { font-size: 1.8em; font-weight: bold; color: white; background-color: var(–primary-color); padding: 15px; border-radius: 5px; text-align: center; margin-bottom: 20px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.2); } .formula-explanation { font-size: 0.95em; color: #555; margin-top: 15px; padding: 10px; background-color: #fff; border-left: 4px solid var(–primary-color); border-radius: 4px; } #chartContainer { text-align: center; margin-top: 30px; background-color: #fff; padding: 20px; border-radius: 8px; border: 1px solid var(–border-color); } #chartContainer canvas { max-width: 100%; height: auto; } #chartCaption { font-size: 0.9em; color: #6c757d; margin-top: 10px; display: block; } .table-container { margin-top: 30px; overflow-x: auto; } table { width: 100%; border-collapse: collapse; margin-top: 15px; } th, td { padding: 12px 15px; text-align: left; border: 1px solid var(–border-color); } thead { background-color: var(–primary-color); color: white; } th { font-weight: bold; } tbody tr:nth-child(even) { background-color: #f2f2f2; } .table-caption { font-size: 0.9em; color: #6c757d; margin-top: 10px; display: block; caption-side: bottom; text-align: center; } .article-section { margin-top: 40px; background-color: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } .article-section h2 { text-align: left; margin-bottom: 20px; border-bottom: none; } .article-section h3 { text-align: left; margin-top: 25px; color: #0056b3; } .article-section p { margin-bottom: 15px; } .faq-item { margin-bottom: 15px; padding: 15px; background-color: #f8f9fa; border-left: 4px solid var(–primary-color); border-radius: 5px; } .faq-item strong { color: var(–primary-color); display: block; margin-bottom: 5px; } .internal-links-list { list-style: none; padding: 0; } .internal-links-list li { margin-bottom: 15px; } .internal-links-list a { color: var(–primary-color); text-decoration: none; font-weight: bold; } .internal-links-list a:hover { text-decoration: underline; } .internal-links-list p { font-size: 0.9em; color: #555; margin-top: 5px; } .footer { text-align: center; margin-top: 40px; padding: 20px; font-size: 0.9em; color: #777; } /* Responsive adjustments */ @media (max-width: 768px) { h1 { font-size: 2em; } h2 { font-size: 1.5em; } .btn { padding: 10px 15px; font-size: 0.95em; } .button-group { flex-direction: column; align-items: center; } .btn { width: 80%; margin-bottom: 10px; } .btn:last-child { margin-bottom: 0; } }

Delhivery Volumetric Weight Calculator

Accurately determine your shipment's volumetric weight with Delhivery's specifications to ensure correct shipping charges.

Calculate Volumetric Weight

Enter the length of your package in centimeters.
Enter the width of your package in centimeters.
Enter the height of your package in centimeters.
Enter the actual physical weight of your package in kilograms.
5000 (Standard for many couriers, including Delhivery for certain services) 6000 (Used by some international carriers) Select the conversion factor used by Delhivery. Usually 5000 cm³/kg.

Your Shipping Weight Calculation

Calculated Volumetric Weight: kg
Chargeable Weight: kg
Dimensions (L x W x H): cm
Formula Explained: Volumetric weight is calculated by multiplying the package's dimensions (Length x Width x Height) and dividing by the Volumetric Factor. Delhivery, like many logistics providers, uses this to account for the space a package occupies. Your Chargeable Weight is the greater of your actual weight and the calculated volumetric weight.

Weight Comparison: Actual vs. Volumetric

Comparing Actual Weight and Calculated Volumetric Weight for various dimensions.

Key Calculation Breakdown

Metric Value Unit
Length cm
Width cm
Height cm
Actual Weight kg
Volumetric Factor cm³/kg
Volume (L x W x H) cm³
Calculated Volumetric Weight kg
Chargeable Weight kg
Detailed breakdown of the inputs and calculated weights.

What is Delhivery Volumetric Weight?

The Delhivery volumetric weight calculator is a crucial tool for anyone shipping goods via the Delhivery network. It helps determine the 'dimensional weight' or 'volumetric weight' of a package, which is a pricing method used by most courier and logistics companies. Unlike simple physical weight, volumetric weight considers the dimensions of the parcel, reflecting the space it occupies in a delivery vehicle. This means that even a light but bulky item can incur shipping charges based on its volume rather than its actual mass. Understanding and calculating this is key to managing shipping costs effectively, especially for e-commerce businesses and individuals sending out goods.

Who Should Use It?

Anyone shipping packages through Delhivery or similar courier services should use a volumetric weight calculator. This includes:

  • E-commerce sellers who need to accurately quote shipping costs to customers.
  • Small businesses managing inventory and dispatch.
  • Individuals sending parcels or gifts.
  • Logistics managers optimizing shipping strategies.

Common Misconceptions

A common misconception is that only heavy items have high shipping costs. However, bulky, lightweight items can often be more expensive to ship due to their volumetric weight. Another is that the calculation is complex; while the concept involves a formula, using a calculator simplifies the process immensely. Relying solely on actual weight can lead to unexpected charges or underpayment for shipping space, impacting profitability or customer satisfaction.

Delhivery Volumetric Weight Formula and Mathematical Explanation

The calculation for volumetric weight is standardized across the industry, with minor variations in the 'volumetric factor'. For Delhivery, the standard formula ensures fairness by charging based on either the physical weight or the space occupied, whichever results in a higher charge.

The Core Formula:

Volumetric Weight (kg) = (Length × Width × Height) / Volumetric Factor

Step-by-Step Derivation:

  1. Measure Dimensions: Accurately measure the Length (L), Width (W), and Height (H) of your package in centimeters (cm).
  2. Calculate Volume: Multiply these three dimensions together: Volume = L × W × H. This gives you the total volume of the package in cubic centimeters (cm³).
  3. Apply Volumetric Factor: Divide the calculated Volume (cm³) by the courier's specified Volumetric Factor. For Delhivery, this is typically 5000 cm³/kg.
  4. Determine Chargeable Weight: Compare the Calculated Volumetric Weight (kg) with the Actual Physical Weight (kg) of the package. The higher of the two values is the Chargeable Weight, which dictates the shipping cost.

Variable Explanations

  • Length (L): The longest dimension of the package.
  • Width (W): The second longest dimension of the package.
  • Height (H): The shortest dimension of the package.
  • Volume: The total space occupied by the package (L x W x H).
  • Volumetric Factor: A constant used by logistics companies to convert cubic dimensions into an equivalent weight. Delhivery commonly uses 5000 cm³/kg.
  • Actual Weight: The real-world weight of the package measured on a scale.
  • Volumetric Weight: The weight calculated based on the package's dimensions and the volumetric factor.
  • Chargeable Weight: The weight used for billing purposes, which is the greater of the Actual Weight and the Volumetric Weight.

Variables Table

Variable Meaning Unit Typical Range / Value
Length, Width, Height Physical dimensions of the package cm > 0
Volume Total space occupied cm³ > 0
Volumetric Factor Conversion constant cm³/kg Commonly 5000 or 6000
Actual Weight Physical weight kg > 0
Volumetric Weight Weight derived from dimensions kg > 0
Chargeable Weight Weight for billing kg Max(Actual Weight, Volumetric Weight)

Practical Examples (Real-World Use Cases)

Example 1: Bulky but Light Item

Consider shipping a large, empty cardboard box for product packaging.

  • Length: 50 cm
  • Width: 40 cm
  • Height: 30 cm
  • Actual Weight: 3 kg
  • Volumetric Factor: 5000 cm³/kg

Calculation:

  • Volume = 50 cm × 40 cm × 30 cm = 60,000 cm³
  • Volumetric Weight = 60,000 cm³ / 5000 cm³/kg = 12 kg

Result: The Volumetric Weight (12 kg) is significantly higher than the Actual Weight (3 kg). Therefore, the Chargeable Weight for this shipment will be 12 kg. This illustrates how Delhivery accounts for the space the box takes up.

Example 2: Dense and Heavy Item

Now, consider shipping a small, dense electronic component.

  • Length: 15 cm
  • Width: 10 cm
  • Height: 5 cm
  • Actual Weight: 4 kg
  • Volumetric Factor: 5000 cm³/kg

Calculation:

  • Volume = 15 cm × 10 cm × 5 cm = 750 cm³
  • Volumetric Weight = 750 cm³ / 5000 cm³/kg = 0.15 kg

Result: The Actual Weight (4 kg) is much higher than the Volumetric Weight (0.15 kg). The Chargeable Weight will be 4 kg. In this case, the shipping cost is based on the actual physical weight because it's more impactful than the space it occupies.

How to Use This Delhivery Volumetric Weight Calculator

Our calculator is designed for simplicity and accuracy. Follow these steps to get your shipping weight:

Step-by-Step Instructions:

  1. Measure Your Package: Get the precise Length, Width, and Height of your parcel in centimeters (cm).
  2. Weigh Your Package: Determine the Actual Weight of the package in kilograms (kg).
  3. Select Volumetric Factor: Choose the appropriate Volumetric Factor from the dropdown. For most Delhivery services, this is 5000 cm³/kg.
  4. Enter Data: Input the measured dimensions and actual weight into the respective fields in the calculator.
  5. Click 'Calculate': The tool will instantly compute the Volumetric Weight and determine the Chargeable Weight.

How to Read Results:

  • Calculated Volumetric Weight: This is the weight derived from your package's dimensions.
  • Chargeable Weight: This is the final weight used by Delhivery for pricing. It will be either the Actual Weight or the Calculated Volumetric Weight, whichever is greater.
  • Primary Highlighted Result: This prominently displays your Chargeable Weight.

Decision-Making Guidance:

Understanding your chargeable weight helps you:

  • Quote Accurate Prices: Essential for e-commerce businesses to avoid undercharging or overcharging customers.
  • Optimize Packaging: Identify if your packaging is unnecessarily bulky for its weight, potentially leading to higher shipping costs. Consider using smaller boxes or consolidating items.
  • Negotiate Rates: For businesses with high shipping volumes, knowing the volumetric weight can aid in negotiating better rates with Delhivery.
  • Budget Effectively: Predict shipping expenses more accurately.

Key Factors That Affect Delhivery Volumetric Weight Results

While the calculation itself is straightforward, several underlying factors influence the final outcome and the importance of volumetric weight:

  1. Package Dimensions: This is the most direct factor. Larger dimensions (length, width, height) naturally lead to a higher volume and thus, potentially higher volumetric weight. Even a slight increase in any dimension can significantly alter the result.
  2. Actual Physical Weight: The comparison between actual and volumetric weight is critical. If the actual weight is significantly higher than the volumetric weight, the actual weight becomes the chargeable weight. This is common for dense materials like metal parts or batteries.
  3. Volumetric Factor Used: Different carriers and even different service levels within the same carrier might use varying volumetric factors (e.g., 5000 cm³/kg vs. 6000 cm³/kg). A higher factor results in a lower volumetric weight, making actual weight more likely to be the chargeable weight. Always confirm the factor applicable to your specific Delhivery service.
  4. Type of Goods Shipped: Lightweight, bulky items like foam products, apparel, bedding, or empty packaging are prime candidates for volumetric weight being the deciding factor. Conversely, dense items like books, machinery parts, or hardware will likely be charged by actual weight.
  5. Packaging Materials and Methods: Excessive or inefficient packaging can inflate dimensions unnecessarily. Using custom-fit boxes, void fill materials judiciously, and exploring options like poly bags for soft goods can help minimize both actual and volumetric weight.
  6. Shipping Service Level: Delhivery offers various services. Premium or express services might have different volumetric calculations or thresholds compared to standard or economy services. Understanding which service you are using is key.
  7. Dimensional Stability: While not a direct input, the stability of the package's dimensions matters. A package that can be easily compressed might behave differently than a rigid one, though calculations are based on static measurements.

Frequently Asked Questions (FAQ)

Q1: What is the standard volumetric factor for Delhivery?

A1: For most of its domestic courier services, Delhivery typically uses a volumetric factor of 5000 cm³/kg. However, it's always best to confirm with Delhivery's official guidelines or your account manager for specific services.

Q2: Does Delhivery use volumetric weight for all shipments?

A2: Yes, Delhivery, like most major logistics providers, calculates shipping charges based on the greater of the actual weight or the volumetric weight for most parcel services. This ensures they are compensated for the space shipments occupy.

Q3: How do I measure my package dimensions accurately?

A3: Measure the longest side as Length, the next longest as Width, and the shortest side as Height. Ensure measurements are taken from the outermost points of the package, including any flaps or protrusions.

Q4: What happens if my dimensions are fractional?

A4: You can enter fractional values if your measuring tool allows, or round to the nearest whole number. For critical calculations, using precise measurements is recommended. The calculator handles decimal inputs.

Q5: Can I use this calculator for international shipments with Delhivery?

A5: While the principle of volumetric weight applies internationally, the specific volumetric factor might differ for international services. This calculator defaults to common factors but verify with Delhivery's international shipping division for precise calculations.

Q6: What if my package is irregular in shape (e.g., a cylinder)?

A6: For irregular shapes, you generally need to measure the longest, widest, and tallest points to approximate a rectangular box. Some carriers might have specific methods for non-rectangular items; consult Delhivery's guidelines.

Q7: How can I reduce my shipping costs based on volumetric weight?

A7: Optimize your packaging by using the smallest possible box that safely fits your item. Avoid excessive padding that adds bulk without weight. Consider consolidating multiple items into one larger shipment if feasible.

Q8: Does volumetric weight affect all Delhivery services equally?

A8: While the concept is generally applied, the thresholds and specific factors might vary slightly between different service tiers (e.g., express vs. standard). Always check the specific terms for the service you intend to use.

Q9: My calculated volumetric weight is very low, but my actual weight is high. Which one matters?

A9: The higher of the two values (actual weight or calculated volumetric weight) is always used as the chargeable weight. So, if your actual weight is higher, that's what you'll pay for.

Related Tools and Internal Resources

© 2023 Your Website Name. All rights reserved.

This Delhivery volumetric weight calculator is for estimation purposes only. Actual shipping charges may vary.

var chartInstance = null; // Global variable to hold chart instance function calculateVolumetricWeight() { var length = parseFloat(document.getElementById("length").value); var width = parseFloat(document.getElementById("width").value); var height = parseFloat(document.getElementById("height").value); var actualWeight = parseFloat(document.getElementById("actualWeight").value); var volumetricFactor = parseFloat(document.getElementById("volumetricFactor").value); // Clear previous errors document.getElementById("lengthError").style.display = 'none'; document.getElementById("widthError").style.display = 'none'; document.getElementById("heightError").style.display = 'none'; document.getElementById("actualWeightError").style.display = 'none'; var isValid = true; if (isNaN(length) || length <= 0) { document.getElementById("lengthError").innerText = "Please enter a valid positive number for length."; document.getElementById("lengthError").style.display = 'block'; isValid = false; } if (isNaN(width) || width <= 0) { document.getElementById("widthError").innerText = "Please enter a valid positive number for width."; document.getElementById("widthError").style.display = 'block'; isValid = false; } if (isNaN(height) || height <= 0) { document.getElementById("heightError").innerText = "Please enter a valid positive number for height."; document.getElementById("heightError").style.display = 'block'; isValid = false; } if (isNaN(actualWeight) || actualWeight <= 0) { document.getElementById("actualWeightError").innerText = "Please enter a valid positive number for actual weight."; document.getElementById("actualWeightError").style.display = 'block'; isValid = false; } if (isNaN(volumetricFactor) || volumetricFactor <= 0) { // This case is less likely with a select, but good practice alert("Invalid Volumetric Factor selected."); isValid = false; } if (!isValid) { // Reset results if inputs are invalid document.getElementById("primaryResult").innerText = "–"; document.getElementById("calculatedVolumetricWeight").innerText = "–"; document.getElementById("chargeableWeight").innerText = "–"; document.getElementById("dimensions").innerText = "–"; updateTableData('–', '–', '–', '–', '–', '–', '–', '–'); if (chartInstance) chartInstance.destroy(); // Destroy existing chart return; } var volume = length * width * height; var calculatedVolumetricWeight = volume / volumetricFactor; var chargeableWeight = Math.max(actualWeight, calculatedVolumetricWeight); document.getElementById("primaryResult").innerText = chargeableWeight.toFixed(2) + " kg"; document.getElementById("calculatedVolumetricWeight").innerText = calculatedVolumetricWeight.toFixed(2); document.getElementById("chargeableWeight").innerText = chargeableWeight.toFixed(2); document.getElementById("dimensions").innerText = length + " x " + width + " x " + height; updateTableData(length, width, height, actualWeight, volumetricFactor, volume, calculatedVolumetricWeight, chargeableWeight); updateChart(actualWeight, calculatedVolumetricWeight); } function updateTableData(length, width, height, actualWeight, volumetricFactor, volume, calculatedVolumetricWeight, chargeableWeight) { document.getElementById("tableLength").innerText = length === '–' ? '–' : length.toFixed(2); document.getElementById("tableWidth").innerText = width === '–' ? '–' : width.toFixed(2); document.getElementById("tableHeight").innerText = height === '–' ? '–' : height.toFixed(2); document.getElementById("tableActualWeight").innerText = actualWeight === '–' ? '–' : actualWeight.toFixed(2); document.getElementById("tableVolumetricFactor").innerText = volumetricFactor === '–' ? '–' : volumetricFactor; document.getElementById("tableVolume").innerText = volume === '–' ? '–' : volume.toFixed(2); document.getElementById("tableCalculatedVolumetricWeight").innerText = calculatedVolumetricWeight === '–' ? '–' : calculatedVolumetricWeight.toFixed(2); document.getElementById("tableChargeableWeight").innerText = chargeableWeight === '–' ? '–' : chargeableWeight.toFixed(2); } function resetCalculator() { document.getElementById("length").value = "30"; document.getElementById("width").value = "20"; document.getElementById("height").value = "15"; document.getElementById("actualWeight").value = "5"; document.getElementById("volumetricFactor").value = "5000"; // Clear errors on reset document.getElementById("lengthError").style.display = 'none'; document.getElementById("widthError").style.display = 'none'; document.getElementById("heightError").style.display = 'none'; document.getElementById("actualWeightError").style.display = 'none'; calculateVolumetricWeight(); // Recalculate with default values } function copyResults() { var primaryResult = document.getElementById("primaryResult").innerText; var calculatedVolumetricWeight = document.getElementById("calculatedVolumetricWeight").innerText; var chargeableWeight = document.getElementById("chargeableWeight").innerText; var dimensions = document.getElementById("dimensions").innerText; var length = document.getElementById("length").value; var width = document.getElementById("width").value; var height = document.getElementById("height").value; var actualWeight = document.getElementById("actualWeight").value; var volumetricFactorText = document.getElementById("volumetricFactor").options[document.getElementById("volumetricFactor").selectedIndex].text.split(' ')[0]; // Extracts the number like '5000' var copyText = "— Delhivery Volumetric Weight Calculation Results —\n\n"; copyText += "Primary Chargeable Weight: " + primaryResult + "\n"; copyText += "Calculated Volumetric Weight: " + calculatedVolumetricWeight + " kg\n"; copyText += "Chargeable Weight: " + chargeableWeight + " kg\n"; copyText += "Dimensions (L x W x H): " + dimensions + " cm\n\n"; copyText += "— Key Assumptions —\n"; copyText += "Length: " + length + " cm\n"; copyText += "Width: " + width + " cm\n"; copyText += "Height: " + height + " cm\n"; copyText += "Actual Weight: " + actualWeight + " kg\n"; copyText += "Volumetric Factor Used: " + volumetricFactorText + " cm³/kg\n"; // Use a temporary textarea to copy var textArea = document.createElement("textarea"); textArea.value = copyText; 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 successfully!' : 'Failed to copy results!'; alert(msg); } catch (err) { alert('Oops, unable to copy'); } document.body.removeChild(textArea); } function updateChart(actualWeight, calculatedVolumetricWeight) { var ctx = document.getElementById('weightComparisonChart').getContext('2d'); // Destroy previous chart instance if it exists if (chartInstance) { chartInstance.destroy(); } chartInstance = new Chart(ctx, { type: 'bar', // Use bar chart for clear comparison data: { labels: ['Actual Weight', 'Calculated Volumetric Weight'], datasets: [{ label: 'Weight (kg)', data: [actualWeight, calculatedVolumetricWeight], backgroundColor: [ 'rgba(0, 74, 153, 0.6)', // Primary color for actual weight 'rgba(40, 167, 69, 0.6)' // Success color for volumetric weight ], borderColor: [ 'rgba(0, 74, 153, 1)', 'rgba(40, 167, 69, 1)' ], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, scales: { y: { beginAtZero: true, title: { display: true, text: 'Weight (kg)' } } }, plugins: { title: { display: true, text: 'Comparison of Actual vs. Volumetric Weight' }, legend: { display: false // Hide legend as labels are clear } } } }); } // Initial calculation on page load with default values window.onload = function() { resetCalculator(); // Sets default values and triggers calculation // Ensure chart canvas element exists before trying to render var canvas = document.getElementById('weightComparisonChart'); if (canvas) { var ctx = canvas.getContext('2d'); // Initialize chart with placeholder data or call updateChart with initial values updateChart(parseFloat(document.getElementById("actualWeight").value), 0); // Initial call, volumetric will update } else { console.error("Canvas element not found!"); } };

Leave a Comment