Thiohep
Petersburg Pharmaceutical Pvt. Ltd presents Thiohep L-Glutathione Tablets 500 mg, a premium antioxidant supplement formulated to help support skin health, detoxification, and overall wellness. Enriched with L-Glutathione, Thiohep tablets help fight oxidative stress and support antioxidant activity in the body. Trusted quality from Petersburg Pharmaceutical Pvt. Ltd for daily health support. Select City Available Stockist document.addEventListener('DOMContentLoaded', function () { const cityDropdown = document.getElementById('firstDropdown'); const stockistDropdown = document.getElementById('secondDropdown'); const detailsDiv = document.getElementById('stockistDetails'); // Load cities from database on page load fetch('https://petersburgpharma.in/wp-admin/admin-ajax.php?action=get_cities') .then(res => res.json()) .then(data => { data.forEach(city => { const opt = document.createElement('option'); opt.value = city; opt.textContent = city; cityDropdown.appendChild(opt); }); }); // On city select, load stockists cityDropdown.addEventListener('change', function () { const city = this.value; stockistDropdown.innerHTML = 'Available Stockist'; detailsDiv.innerHTML = ''; if (city) { fetch('https://petersburgpharma.in/wp-admin/admin-ajax.php?action=get_stockists&city=' + city) .then(response => response.json()) .then(data => { data.forEach(stockist => { const opt = document.createElement('option'); opt.value = stockist.id; opt.textContent = stockist.name; stockistDropdown.appendChild(opt); }); }); } }); // On stockist select, load details stockistDropdown.addEventListener('change', function () { const id = this.value; if (id) { fetch('https://petersburgpharma.in/wp-admin/admin-ajax.php?action=get_stockist_details&id=' + id) .then(response => response.json()) .then(data => { detailsDiv.innerHTML = ` Stockist Name: ${data.name} Contact: ${data.contact} `; }); } else { detailsDiv.innerHTML = ''; } }); });
AI Readiness
Good foundation, but some important product data is still missing.