اخبار

عاجل : موعد أذان المغرب ومواقيت الصلاة في مصر اليوم السبت

464

مواقيت الصلاة في مصر اليوم السبت .. يبحث العديد من الأشخاص عن مواقيت الصلاة اليوم السبت 14 فبراير 2026 في القاهرة والعديد من المحافظات، وذلك لتسهيل متابعة الصلوات اليومية للمواطنين والوافدين. 

مواقيت الصلاة في مصر اليوم السبت

ويأتي نشر هذه المواعيد ضمن جهود توعية المواطنين وتنظيم يومهم بما يتوافق مع أوقات الصلاة المختلفة.

مواقيت الصلاة في مصر

تُعد هذه المواعيد مرجعًا دقيقًا لكل من يرغب في تنظيم يومه مع الالتزام بالصلوات الخمس، ويأتي نشرها في إطار حرص الدولة على تسهيل حياة المواطنين وتوفير المعلومات الدينية الدقيقة.

مواقيت الصلاة بالقاهرة ومدن ومحافظات الجمهورية
وفيما يلي مواقيت الصلاة بالقاهرة ومدن ومحافظات الجمهورية.

مواقيت الصلاة بتوقيت القاهرة
• موعد أذان الفجر: 5:08 ص

• موعد الشروق: 6:36 ص

• موعد أذان ‎الظهر: 12:09 ص

• ‎موعد أذان العصر: 3:18 م

• موعد أذان ‎المغرب: 5:43 م

• موعد أذان ‎العشاء: 7:01 م

مواقيت الصلاة بتوقيت الإسكندرية
• موعد أذان الفجر: 5:14 ص

• موعد الشروق: 6:42 ص

• ‎موعد أذان الظهر: 12:14 م

• موعد أذان ‎العصر: 3:22 م

• ‎موعد أذان المغرب: 5:46 م

• ‎موعد أذان العشاء: 7:06 م

مواقيت الصلاة بتوقيت أسوان
• موعد أذان الفجر: 4:59 ص

• موعد الشروق: 6:22 ص

• موعد أذان ‎الظهر: 12:02 ص

• ‎موعد أذان العصر: 3:18 م

• موعد أذان ‎المغرب: 5:43 م

• موعد أذان العشاء: 6:57 م.

مواقيت الصلاة بتوقيت مطروح
• موعد أذان الفجر: 5:25 ص

• موعد الشروق: 6:53 ص

• ‎موعد أذان الظهر: 12:25 م

• موعد أذان ‎العصر: 3:33 م

• ‎موعد أذان المغرب: 5:57 م

• موعد أذان ‎العشاء: 7:16 م

مواقيت الصلاة بتوقيت الغردقة
• موعد أذان الفجر 4:57 ص

‎• موعد الشروق: 6:22 ص

• موعد أذان الظهر: 11:59 ص

• موعد أذان العصر: 3:11 م

• موعد أذان المغرب: 5:36 م

• موعد أذان العشاء: 6:52 م.

مواقيت الصلاة بتوقيت شرم الشيخ
• موعد أذان الفجر: 4:55 ص

• موعد الشروق: 6:21 ص

• موعد أذان الظهر: 11:57 ص

• موعد أذان العصر: 3:09 م

• موعد أذان المغرب: 5:33 م

• موعد أذان العشاء: 6:50 م

replaceOembeds();

function replaceOembeds() {
var allEmbeds = document.getElementsByTagName(“OEMBED”);

while (allEmbeds.length != 0) {
replaceOembedWithHtml(allEmbeds[0], extractLinkFromOembed(allEmbeds[0]));
allEmbeds = document.getElementsByTagName(“OEMBED”);
}

runYoutubeLazyLoad();
// loadfbApi();
}

function replaceOembedWithHtml(element, sourceData) {
if (sourceData.source.toLowerCase() === “youtube”) {
var html=”

” +

‘ +

‘ +

‘ +
” +

‘ +

‘;

replaceElementWithHtml(element, html);
} else if (sourceData.source.toLowerCase() === “instagram”) {
var html=”

‘;

replaceElementWithHtml(element, html);
} else if (sourceData.source.toLowerCase() === “twitter”) {
var html=”

‘;
replaceElementWithHtml(element, html);
} else if (sourceData.source.toLowerCase() === “facebook”) {
var html=”


replaceElementWithHtml(element, html);
} else {
replaceElementWithHtml(element, “”);
}

}

function extractLinkFromOembed(element) {
return getUrlSource(element.getAttribute(“url”));
}

function getUrlSource(url) {
var ytRegex = /http(?:s?):\/\/(?:www\.)?youtu(?:be\.com\/watch\?v=|\.be\/)([\w\-\_]*)(&(amp;)?‌​[\w\?‌​=]*)?/;
var instaRegex = /(https?:\/\/www\.)?instagram\.com(\/p\/(\w+)\/?)/;
var twitterRegex = /twitter\.com\/.*\/status(?:es)?\/([^\/\?]+)/;
var fbRegex = /^https?:\/\/www\.facebook\.com.*\/(video(s)?|watch|story|posts)(\.php?|\/).+$/;

if (ytRegex.test(url)) {
return {
source: “Youtube”,
url: url,
id: ytRegex.exec(url)[1]
};
}

if (instaRegex.test(url)) {
return {
source: “Instagram”,
url: url,
id: instaRegex.exec(url)[3]
};
}

if (twitterRegex.test(url)) {
return {
source: “Twitter”,
url: url,
id: twitterRegex.exec(url)[1]
};
}

if (fbRegex.test(url)) {
return {
source: “Facebook”,
url: url,
id: fbRegex.exec(url)[1]
};

}

return {
source: “Unknown”,
url: url,
id: “”
};
}

function replaceElementWithHtml(element, html) {
var str = html;
var Obj = element; //any element to be fully replaced
if (Obj.outerHTML) { //if outerHTML is supported
Obj.outerHTML = str; ///it’s simple replacement of whole element with contents of str var
} else { //if outerHTML is not supported, there is a weird but crossbrowsered trick
var tmpObj = document.createElement(“div”);
tmpObj.innerHTML = ‘‘;
ObjParent = Obj.parentNode; //Okey, element should be parented
ObjParent.replaceChild(tmpObj, Obj); //here we placing our temporary data instead of our target, so we can find it then and replace it into whatever we want to replace to
ObjParent.innerHTML = ObjParent.innerHTML.replace(‘

‘, str);
}
}
function loadfbApi() {
var js = document.createElement(‘script’);
js.src=”https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.2″;
document.body.appendChild(js);
}
function runYoutubeLazyLoad() {
/// youtube lazyload
var youtube = document.querySelectorAll(“.youtube”);

for (var i = 0; i < youtube.length; i++) {

var source = "https://img.youtube.com/vi/" + youtube[i].dataset.embed +
"/0.jpg";

var image = new Image();
image.src = "https://www.tahiamasr.com/themes/tahia/assets/images/no.jpg";
image.classList.add('lazyload');
image.setAttribute("data-src", source);
image.setAttribute("alt", "youtube");
image.addEventListener("load", function () {
youtube[i].appendChild(image);
}(i));

youtube[i].addEventListener("click", function () {

var iframe = document.createElement("iframe");

iframe.setAttribute("frameborder", "0");
iframe.setAttribute("allowfullscreen", "");
iframe.setAttribute("src", "https://www.youtube.com/embed/" + this.dataset
.embed + "?rel=0&showinfo=0&autoplay=1");

this.innerHTML = "";
this.appendChild(iframe);
});
};
}

اظهر المزيد

مقالات ذات صلة

اترك تعليقاً

لن يتم نشر عنوان بريدك الإلكتروني. الحقول الإلزامية مشار إليها بـ *

زر الذهاب إلى الأعلى