document.addEventListener('DOMContentLoaded',function(){// Select all elements with the class 'product-price'var priceElements=document.querySelectorAll('.product-price');// Loop through each element and replace '$' with '₹'priceElements.forEach(function(element){element.innerHTML=element.innerHTML.replace('$','₹')})});