اوقاتِ نماز

لوکیشن لوڈ ہو رہی ہے…
فجر –:–
ظہر –:–
عصر –:–
مغرب –:–
عشاء –:–
بشکریہ: Aladhan API

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();

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top