اوقاتِ نماز
| فجر | –:– |
| ظہر | –:– |
| عصر | –:– |
| مغرب | –:– |
| عشاء | –:– |
function updateBloggerPrayerTimes() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(position => {
const lat = position.coords.latitude;
const lon = position.coords.longitude;
fetch(`https://api.aladhan.com/v1/timings?latitude=${lat}&longitude=${lon}&method=2`)
.then(res => res.json())
.then(result => {
const t = result.data.timings;
document.getElementById(‘b-fajr’).innerText = t.Fajr;
document.getElementById(‘b-dhuhr’).innerText = t.Dhuhr;
document.getElementById(‘b-asr’).innerText = t.Asr;
document.getElementById(‘b-maghrib’).innerText = t.Maghrib;
document.getElementById(‘b-isha’).innerText = t.Isha;
document.getElementById(‘location-info’).innerText = “آپ کے موجودہ شہر کے مطابق”;
});
}, () => {
document.getElementById(‘location-info’).innerText = “لوکیشن کی اجازت درکار ہے”;
});
}
}
updateBloggerPrayerTimes();

