'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Masjid al-Haram

The Masjid al-Ḥarām (Arabic: المسجد الحرام, literally "the sacred mosque"), also called the Sacred Mosque, and the Grand Mosque or Great Mosque of Mecca, is the largest mosque in the world and surrounds Islam's holiest place, the Kaaba, in the city of Mecca, Saudi Arabia. Muslims face in the Qibla (direction of the Kaaba) while performing Salat (obligatory daily prayers). One of the Five Pillars of Islam requires every Muslim to perform the Hajj pilgrimage, one of the largest annual gatherings of people in the world, at least once in his or her lifetime if able to do so, including Tawaf (circumambulation) of the Kaaba.

The current structure covers an area of 356,800 square metres (88.2 acres) including the outdoor and indoor praying spaces, it is open at all times.

History

Pre-Islamic era

The Quran states that Abraham, together with his son Ishmael, raised the foundations of a house [Quran 2:127] that is identified by most commentators as the Kaaba. Allah had shown Ibrahim the exact site, very near to the Well of Zamzam, where Abraham and Ishmael began work on the Kaaba's construction in circa 2130 BCE. After Abraham had built the Kaaba, an angel brought to him the Black Stone, a celestial stone that, according to tradition, had fallen from Heaven on the nearby hill Abu Qubays. According to a saying attributed to Muhammad, the Black Stone had "descended from Paradise whiter than milk but the sins of the sons of Adam had made it black". The Black Stone is believed to be the only remnant of the original structure made by Ibrahim.

Podcasts:

  • 🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV

    🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV 24/7 Live Stream of Masjid Al Haram from Makkah . PLEASE LIKE, SHARE AND SUBSCRIBE (Don't forget to tap the bell) Target 1,000,000 Subscribers PLEASE NOTE: Any of the views expressed by the speakers do not necessarily represent the views of AlQuran4K or any other projects it may have or intend to do. AlQuran4K and it's affiliates do not advocate nor condone any unlawful activity towards any individual or community. COPYRIGHT NOTICE: We do NOT allow anyone to translate our content or rebroadcast our content. However, you may reshare videos but the video must remain branded under AlQuran4K(with our logo and channel link) all speakers and artists should also be credited in the description, Video Footage: Video Footage r...

    published: 26 Dec 2024
  • 🔴Makkah Live HD TV 2024 | مكة مباشر | الحرم المكي مباشر | مكه المكرمه مبا | HD LIVE Masjid Al Haram

    #MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ #MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ Masjid Al Haram LIVE المسجد الحرام بث مباشر | La Makkah en direct Makkah Live: بث مباشر || قناة القرآن الكريم Makkah Live Makkah Live HD مكة بث مباشر | قناة القرآن الكريم Mecca Live Today HD 🔴 Makkah Live | مكة مباشر | الحرم المكي مباشر | قناة القران الكريم السعودية مباشر | مكه المكرمه مبا بث مباشر || قناة القرآن الكريم Makkah Live | Makkah Live Today Madina Live Tv HDقناة السنة النبوية | المدينة المنورة بث مباشر Madina Live Today Now بث مباشر | مكة مباشر | قناة القرآن الكريم | Makkah Live HD 🔴 Madina Live Tv Online 24/7 | بث مباشر || قناة السنة النبوية Madinah Live Today HD 🔴Madinah Live Today Now | بث مباشر | قناة السنة النبوية | Madinah Live HD 24/7 Makkah Live HD مك...

    published: 20 Dec 2024
  • 🕋Makkah Live TV | مكة المكرمة بث مباشر | قناة القرآن الكريم | Live Masjid Al Haram | Makkah Today HD

    🕋LIVE Makkah Live HD مكة المكرمة بث مباشر | قناة القرآن الكريم | Masjid Al Haram | Makkah Live Today 🔴Live Jummah Makkah Today Makkah Live TV خطبتي وصلاة #الجمعة​ من #المسجد_الحرام #makkah #makkahlive #makkahalmukarromah #makkahmadinah #madina #madinah #madinasharif #madinahlive #madinalive #masjid #masjidalharam #masjidilharam #masjidalnabwi #mecca #meccalive #makkah2024 #makkahlivetoday #makkahmukarma خطبتي وصلاة الجمعة,خطبة الجمعة,خطبتي وصلاة الجمعة من المسجد الحرام,صلاة الجمعة,الجمعة,الصلاة,الجمعة خطبة,خطبة الجمعة من الحرم,يوم الجمعة,خطبه الجمعه اليوم,خطبة الجمعة ياسر الدوسري,وصلاة,خطبة الجمعة من مكة المكرمة,خطبة الجمعة اليوم في الحرم المكي,خطبه الجمعه لهذا اليوم,خطبه الجمعه الحرم اليوم,خطبه الجمعه الحرم,أهمية الصلاة,الجمعه,خطبه الجمعه في الحرم اليوم,خطبه الجمعه اليوم ياسر الدوسري,ط...

    published: 27 Dec 2024
  • 🔴 Makkah Live HD | Mecca Live | Makkah Live Today Now 🕋

    Makkah Live HD | Mecca Live | Makkah Live Today Now | mekka live | mecca | makka live | 24/7 Live Stream of Masjid Al Haram from Makkah . PLEASE LIKE, SHARE AND SUBSCRIBE (Don't forget to tap the bell) Target 1,000,000 Subscribers PLEASE NOTE: Any of the views expressed by the speakers do not necessarily represent the views of AlQuran4K or any other projects it may have or intend to do. AlQuran4K and it's affiliates do not advocate nor condone any unlawful activity towards any individual or community. COPYRIGHT NOTICE: We do NOT allow anyone to translate our content or rebroadcast our content. However, you may reshare videos but the video must remain branded under AlQuran4K(with our logo and channel link) all speakers and artists should also be credited in the description, Video Fo...

    published: 25 Dec 2024
  • Makkah's Masjid al-Haram Expansion Project - World's Largest Religious Structure! المسجد الحرام‎‎

    Makkah's Masjid Al Haram is currently being expanded to accommodate more worshipers. Once completed, the mosque will be the largest religious building in the world and will hold up to 2.5 million people. This project is truly enormous and groundbreaking as it expands a structure that has been around for centuries. Subscribe for more videos!

    published: 29 Jun 2016
  • Cleaner Masjid Al Haram #makkah #allah #makkahlivehd #makkahlive

    Instagram. https://www.instagram.com/abdul_alim__f_a?igsh=MWNvd2d3MzBpN2dtbQ== Whatsapp group https://whatsapp.com/channel/0029VajXEd5HwXb6I5GFy419

    published: 24 Jan 2024
  • Why Masjid al-Haram's Sound System Has Never Failed

    Take a closer look at the mics! Subscribe for more videos like this ➡️ http://youtube.com/ilmfeed/?sub_confirmation=1 Support IlmFeed: http://patreon.com/ilmfeed Like: http://www.facebook.com/ilmfeed Follow: http://www.twitter.com/ilmfeed Follow: http://www.instagram.com/ilmfeed

    published: 03 Aug 2020
  • Why He Said NO To Being Masjid Al Haram Imam

    Shaykh Saad Al Ghamidi reveals why he didn't take the position of Imam at Masjid al-Haram. Become an IlmFeed member: https://www.youtube.com/ilmfeed/join Subscribe for more videos like this ➡️ http://youtube.com/ilmfeed/?sub_confirmation=1 Support IlmFeed: http://patreon.com/ilmfeed Like: http://www.facebook.com/ilmfeed Follow: http://www.twitter.com/ilmfeed Follow: http://www.instagram.com/ilmfeed

    published: 06 Jan 2021
🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV
0:00

🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV

  • Order:
  • Duration: 0:00
  • Uploaded Date: 26 Dec 2024
  • views: 491070
🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV 24/7 Live Stream of Masjid Al Haram from Makkah . PLEASE LIKE, SHARE AND SUBSCRIBE (Don't forget to tap the bell) Target 1,000,000 Subscribers PLEASE NOTE: Any of the views expressed by the speakers do not necessarily represent the views of AlQuran4K or any other projects it may have or intend to do. AlQuran4K and it's affiliates do not advocate nor condone any unlawful activity towards any individual or community. COPYRIGHT NOTICE: We do NOT allow anyone to translate our content or rebroadcast our content. However, you may reshare videos but the video must remain branded under AlQuran4K(with our logo and channel link) all speakers and artists should also be credited in the description, Video Footage: Video Footage rights exclusively belong to the Saudi Broadcasting Authority #MakkahLive #MasjidAlHaram #AlQuran4K
https://wn.com/🔴Live_Makkah_Today_|_بث_مباشر_|_قناة_القرآن_الكريم_Makkah_Live_Tv
🔴Makkah Live HD TV 2024 | مكة مباشر | الحرم المكي مباشر | مكه المكرمه مبا | HD LIVE Masjid Al Haram
0:00

🔴Makkah Live HD TV 2024 | مكة مباشر | الحرم المكي مباشر | مكه المكرمه مبا | HD LIVE Masjid Al Haram

  • Order:
  • Duration: 0:00
  • Uploaded Date: 20 Dec 2024
  • views: 42855
#MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ #MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ Masjid Al Haram LIVE المسجد الحرام بث مباشر | La Makkah en direct Makkah Live: بث مباشر || قناة القرآن الكريم Makkah Live Makkah Live HD مكة بث مباشر | قناة القرآن الكريم Mecca Live Today HD 🔴 Makkah Live | مكة مباشر | الحرم المكي مباشر | قناة القران الكريم السعودية مباشر | مكه المكرمه مبا بث مباشر || قناة القرآن الكريم Makkah Live | Makkah Live Today Madina Live Tv HDقناة السنة النبوية | المدينة المنورة بث مباشر Madina Live Today Now بث مباشر | مكة مباشر | قناة القرآن الكريم | Makkah Live HD 🔴 Madina Live Tv Online 24/7 | بث مباشر || قناة السنة النبوية Madinah Live Today HD 🔴Madinah Live Today Now | بث مباشر | قناة السنة النبوية | Madinah Live HD 24/7 Makkah Live HD مكة المكرمة مباشر | قناة القرآن الكريم | للحرم المكي مباشر Mecca Live Today HD مكة المكرمة بث حي مباشر 24 ساعة للحرم المكي الشريف 24/7 Live Stream of Masjid Al Haram from Makkah رجب ١٤٤٢ھ بث مباشر صلاة التراويح في رمضان مباشرة من مكة المكرمة مكة مباشر صلاة الجمعه مباشر القران الكريم القران مباشر قناة القران الكريم مكة المكرمة السعودية مباشر مباشر مكه قناة السنة النبوية قناة القران الكريم Al Sunnah Al Nabawi HD Saudi Quran TV Live HD Hajj Live 2020 1441 بث مباشر صلاة التراويح في رمضان مباشرة من مكة المكرمة مكة مباشر صلاة الجمعه مباشر القران الكريم القران مباشر قناة القران الكريم مكة المكرمة السعودية مباشر مباشر مكه قناة السنة النبوية قناة القران الكريم Al Sunnah Al Nabawi HD Saudi Quran TV Live HD Hajj Live 2020 1441 بث مباشر صلاة التراويح في رمضان مباشرة من مكة المكرمة الحرم المكي مباشر بث مباشر الحرم المكي مكة مباشر قران قناة القران الكريم السعودية مباشر مكه المكرمه مباشر الان mecca live القران الكريم مباشر قناة القران الكريم haram live live makkah الحرم مباشر مكه مباشر قناة مكة القران الكريم بث مكه قران الكريم بث مباشر قناة القران الكريم بث مباشر مكة قناة القران الكريم السعودية بث مباشر مكة المكرمة بث مباشر makkah live - مكة مباشر الحرم المكي مباشر الان بث مباشر القران الكريم بث مباشر قناة القران الكريم بالمسجد الحرام بث مكه مباشر makkah live today now 2020 قناة مكة المكرمة بث مباشر مباشر مكة المكرمة الان مباشر مكه makha live makka live القران القران الكريم live الكعبه مباشر بث مباشر || قناة القرآن الكريم makkah live بث مباشر القران الكريم مكه المكرمه بث مباشر قران بث مباشر للحرم المكي الان بث مباشر مكة المكرمة الان 2020بث مباشر مكه قران قران قران كريم بث مباشر قناة السعوديه قران كريم بث مباشر قناة القرآن الكريم قناة القران قناة مكة المكرمة مباشر قناة مكة مباشر قناة مكه المكرمه مباشر الان بث مباشر || قناة القرآن الكريم Makkah Live Makkah Live HD مكة بث مباشر | قناة القرآن الكريم Mecca Live Today HD 🔴 Makkah Live | مكة مباشر | الحرم المكي مباشر | قناة القران الكريم السعودية مباشر | مكه المكرمه مبا بث مباشر || قناة القرآن الكريم Makkah Live | Makkah Live Today Madina Live Tv HDقناة السنة النبوية | المدينة المنورة بث مباشر Madina Live Today Now بث مباشر | مكة مباشر | قناة القرآن الكريم | Makkah Live HD 🔴 Madina Live Tv Online 24/7 | بث مباشر || قناة السنة النبوية Madinah Live Today HD 🔴Madinah Live Today Now | بث مباشر | قناة السنة النبوية | Madinah Live HD 24/7 Makkah Live HD مكة المكرمة مباشر | قناة القرآن الكريم | للحرم المكي مباشر Mecca Live Today HD #MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ #MakkahLive​​​ #MasjidAlHaram​​​ #MadinahLive​​​ #Makkah​​​ #MakkahLiveHD​​​ #Muslims​​​ #Kaaba​​​ #Islam​​​ #SaudiTV​​​ #HDTV​​​ #FullHD​​​ #Hajj2021​​​ #Hajj​​​ #AlQuranHD​​​ #حرم_المكي​​​ #قناة_القرآن_الكريم​​​ #مكة_المكرمة​​​ Your Queries: بث مباشر || قناة القرآن الكريم Makkah Live Makkah Live HD مكة بث مباشر | قناة القرآن الكريم Mecca Live Today HD 🔴 Makkah Live | مكة مباشر | الحرم المكي مباشر | قناة القران الكريم السعودية مباشر | مكه المكرمه مبا بث مباشر || قناة القرآن الكريم Makkah Live | Makkah Live Today Madina Live Tv HDقناة السنة النبوية | المدينة المنورة بث مباشر Madina Live Today Now بث مباشر | مكة مباشر | قناة القرآن الكريم | Makkah Live HD 🔴 Madina Live Tv Online 24/7 | بث مباشر || قناة السنة النبوية Madinah Live Today HD 🔴Madinah Live Today Now | بث مباشر | قناة السنة النبوية | Madinah Live HD 24/7 Makkah Live HD مكة المكرمة مباشر | قناة القرآن الكريم | للحرم المكي مباشر Mecca Live Today HD
https://wn.com/🔴Makkah_Live_Hd_Tv_2024_|_مكة_مباشر_|_الحرم_المكي_مباشر_|_مكه_المكرمه_مبا_|_Hd_Live_Masjid_Al_Haram
🕋Makkah Live TV | مكة المكرمة بث مباشر | قناة القرآن الكريم | Live Masjid Al Haram | Makkah Today HD
0:00

🕋Makkah Live TV | مكة المكرمة بث مباشر | قناة القرآن الكريم | Live Masjid Al Haram | Makkah Today HD

  • Order:
  • Duration: 0:00
  • Uploaded Date: 27 Dec 2024
  • views: 112811
🕋LIVE Makkah Live HD مكة المكرمة بث مباشر | قناة القرآن الكريم | Masjid Al Haram | Makkah Live Today 🔴Live Jummah Makkah Today Makkah Live TV خطبتي وصلاة #الجمعة​ من #المسجد_الحرام #makkah #makkahlive #makkahalmukarromah #makkahmadinah #madina #madinah #madinasharif #madinahlive #madinalive #masjid #masjidalharam #masjidilharam #masjidalnabwi #mecca #meccalive #makkah2024 #makkahlivetoday #makkahmukarma خطبتي وصلاة الجمعة,خطبة الجمعة,خطبتي وصلاة الجمعة من المسجد الحرام,صلاة الجمعة,الجمعة,الصلاة,الجمعة خطبة,خطبة الجمعة من الحرم,يوم الجمعة,خطبه الجمعه اليوم,خطبة الجمعة ياسر الدوسري,وصلاة,خطبة الجمعة من مكة المكرمة,خطبة الجمعة اليوم في الحرم المكي,خطبه الجمعه لهذا اليوم,خطبه الجمعه الحرم اليوم,خطبه الجمعه الحرم,أهمية الصلاة,الجمعه,خطبه الجمعه في الحرم اليوم,خطبه الجمعه اليوم ياسر الدوسري,طول الصلاة,خطبه الجمعه من مكه المكرمه مكة المكرمة,makkah live,makkah,makkah live hd,makkah live now,makkah live today,live makkah,live mekkah saat ini,mecca live,mekkah hari ini live,makkah live tv,makkah live 2024,makka live,madina live,live stream,masjid al haram live,makkah live azan,tawaf e kabah live,مكة,مكة مباشر,مكة وجدة,قناة مكة,مكه,مكه مباشر,القران الكريم,القرآن الكريم,الكريم,القران,القران الكريم مباشر,المملكة العربية السعودية,سلمان بن عبدالعزيز,خادم الحرمين الشريفين mecca live today mecca live hd mecca live stream mecca live now today mecca live video mecca live now today 2024 mecca live 2024 mecca live english mecca live azan mecca live aaj ka masjid al haram live masjid al haram azan masjid al haram imam masjid al haram car masjid al haram live now masjid al haram prayer masjid al haram documentary masjid al haram quran recitation masjid al haram azan 2024 masjid al haram adhan Makkah Live بث مباشر | مكة مباشر | قناة القرآن الكريم | Makkah Live HD Makkah Live HD مكة المكرمة مباشر | قناة القرآن الكريم | للحرم المكي مباشر Mecca Live Today HD #MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ #MakkahLive​​​ #MasjidAlHaram​​​ #MadinahLive​​​ #Makkah​​​ #MakkahLiveHD​​​ #Muslims​​​ #Kaaba​​​ #Islam​​​ #SaudiTV​​​ #HDTV​​​ #FullHD​​​ #hajj2024 ​​​ #Hajj​​​ #AlQuranHD​​​ #حرم_المكي​​​ #قناة_القرآن_الكريم​​​ #مكة_المكرمة​​​ مكة المكرمة بث حي مباشر 24 ساعة للحرم المكي الشريف
https://wn.com/🕋Makkah_Live_Tv_|_مكة_المكرمة_بث_مباشر_|_قناة_القرآن_الكريم_|_Live_Masjid_Al_Haram_|_Makkah_Today_Hd
🔴 Makkah Live HD | Mecca Live | Makkah Live Today Now 🕋
0:00

🔴 Makkah Live HD | Mecca Live | Makkah Live Today Now 🕋

  • Order:
  • Duration: 0:00
  • Uploaded Date: 25 Dec 2024
  • views: 332101
Makkah Live HD | Mecca Live | Makkah Live Today Now | mekka live | mecca | makka live | 24/7 Live Stream of Masjid Al Haram from Makkah . PLEASE LIKE, SHARE AND SUBSCRIBE (Don't forget to tap the bell) Target 1,000,000 Subscribers PLEASE NOTE: Any of the views expressed by the speakers do not necessarily represent the views of AlQuran4K or any other projects it may have or intend to do. AlQuran4K and it's affiliates do not advocate nor condone any unlawful activity towards any individual or community. COPYRIGHT NOTICE: We do NOT allow anyone to translate our content or rebroadcast our content. However, you may reshare videos but the video must remain branded under AlQuran4K(with our logo and channel link) all speakers and artists should also be credited in the description, Video Footage: Video Footage rights exclusively belong to the Saudi Broadcasting Authority #MakkahLive #MasjidAlHaram #AlQuran4K
https://wn.com/🔴_Makkah_Live_Hd_|_Mecca_Live_|_Makkah_Live_Today_Now_🕋
Makkah's Masjid al-Haram Expansion Project - World's Largest Religious Structure! المسجد الحرام‎‎
1:15

Makkah's Masjid al-Haram Expansion Project - World's Largest Religious Structure! المسجد الحرام‎‎

  • Order:
  • Duration: 1:15
  • Uploaded Date: 29 Jun 2016
  • views: 141912
Makkah's Masjid Al Haram is currently being expanded to accommodate more worshipers. Once completed, the mosque will be the largest religious building in the world and will hold up to 2.5 million people. This project is truly enormous and groundbreaking as it expands a structure that has been around for centuries. Subscribe for more videos!
https://wn.com/Makkah's_Masjid_Al_Haram_Expansion_Project_World's_Largest_Religious_Structure_المسجد_الحرام‎‎
Cleaner Masjid Al Haram #makkah #allah #makkahlivehd #makkahlive
0:24

Cleaner Masjid Al Haram #makkah #allah #makkahlivehd #makkahlive

  • Order:
  • Duration: 0:24
  • Uploaded Date: 24 Jan 2024
  • views: 35286222
Instagram. https://www.instagram.com/abdul_alim__f_a?igsh=MWNvd2d3MzBpN2dtbQ== Whatsapp group https://whatsapp.com/channel/0029VajXEd5HwXb6I5GFy419
https://wn.com/Cleaner_Masjid_Al_Haram_Makkah_Allah_Makkahlivehd_Makkahlive
Why Masjid al-Haram's Sound System Has Never Failed
3:00

Why Masjid al-Haram's Sound System Has Never Failed

  • Order:
  • Duration: 3:00
  • Uploaded Date: 03 Aug 2020
  • views: 1501271
Take a closer look at the mics! Subscribe for more videos like this ➡️ http://youtube.com/ilmfeed/?sub_confirmation=1 Support IlmFeed: http://patreon.com/ilmfeed Like: http://www.facebook.com/ilmfeed Follow: http://www.twitter.com/ilmfeed Follow: http://www.instagram.com/ilmfeed
https://wn.com/Why_Masjid_Al_Haram's_Sound_System_Has_Never_Failed
Why He Said NO To Being Masjid Al Haram Imam
1:03

Why He Said NO To Being Masjid Al Haram Imam

  • Order:
  • Duration: 1:03
  • Uploaded Date: 06 Jan 2021
  • views: 718047
Shaykh Saad Al Ghamidi reveals why he didn't take the position of Imam at Masjid al-Haram. Become an IlmFeed member: https://www.youtube.com/ilmfeed/join Subscribe for more videos like this ➡️ http://youtube.com/ilmfeed/?sub_confirmation=1 Support IlmFeed: http://patreon.com/ilmfeed Like: http://www.facebook.com/ilmfeed Follow: http://www.twitter.com/ilmfeed Follow: http://www.instagram.com/ilmfeed
https://wn.com/Why_He_Said_No_To_Being_Masjid_Al_Haram_Imam
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • 🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV
    0:00
    🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TVremove from playlist
  • 🔴Makkah Live HD TV 2024 | مكة مباشر | الحرم المكي مباشر | مكه المكرمه مبا | HD LIVE Masjid Al Haram
    0:00
    🔴Makkah Live HD TV 2024 | مكة مباشر | الحرم المكي مباشر | مكه المكرمه مبا | HD LIVE Masjid Al Haramremove from playlist
  • 🕋Makkah Live TV | مكة المكرمة بث مباشر | قناة القرآن الكريم | Live Masjid Al Haram | Makkah Today HD
    0:00
    🕋Makkah Live TV | مكة المكرمة بث مباشر | قناة القرآن الكريم | Live Masjid Al Haram | Makkah Today HDremove from playlist
  • 🔴 Makkah Live HD | Mecca Live | Makkah Live Today Now 🕋
    0:00
    🔴 Makkah Live HD | Mecca Live | Makkah Live Today Now 🕋remove from playlist
  • Makkah's Masjid al-Haram Expansion Project - World's Largest Religious Structure! المسجد الحرام‎‎
    1:15
    Makkah's Masjid al-Haram Expansion Project - World's Largest Religious Structure! المسجد الحرام‎‎remove from playlist
  • Cleaner Masjid Al Haram #makkah #allah #makkahlivehd #makkahlive
    0:24
    Cleaner Masjid Al Haram #makkah #allah #makkahlivehd #makkahliveremove from playlist
  • Why Masjid al-Haram's Sound System Has Never Failed
    3:00
    Why Masjid al-Haram's Sound System Has Never Failedremove from playlist
  • Why He Said NO To Being Masjid Al Haram Imam
    1:03
    Why He Said NO To Being Masjid Al Haram Imamremove from playlist
PLAYLIST TIME:

🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV

🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV 24/7 Live Stream of Masjid Al Haram from Makkah . PLEASE LIKE, SHARE AND SUBSCRIBE (Don't forget to tap the bell) Target 1,000,000 Subscribers PLEASE NOTE: Any of the views expressed by the speakers do not necessarily represent the views of AlQuran4K or any other projects it may have or intend to do. AlQuran4K and it's affiliates do not advocate nor condone any unlawful activity towards any individual or community. COPYRIGHT NOTICE: We do NOT allow anyone to translate our content or rebroadcast our content. However, you may reshare videos but the video must remain branded under AlQuran4K(with our logo and channel link) all speakers and artists should also be credited in the description, Video Footage: Video Footage rights exclusively belong to the Saudi Broadcasting Authority #MakkahLive #MasjidAlHaram #AlQuran4K
0:00
🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV
🔴Live Makkah Today | بث مباشر | قناة القرآن الكريم Makkah Live TV 24/7 Live Stream of Mas...
published: 26 Dec 2024
Play in Full Screen
0:00
🔴Makkah Live HD TV 2024 | مكة مباشر | الحرم المكي مباشر | مكه المكرمه مبا | HD LIVE Masjid Al Haram
#MakkahLive​​​​ #MasjidAlHaram​​​​ #MakkahLiveToday​​​​ #MakkahLive​​​​ #MasjidAlHaram​​​​...
published: 20 Dec 2024
Play in Full Screen
0:00
🕋Makkah Live TV | مكة المكرمة بث مباشر | قناة القرآن الكريم | Live Masjid Al Haram | Makkah Today HD
🕋LIVE Makkah Live HD مكة المكرمة بث مباشر | قناة القرآن الكريم | Masjid Al Haram | Makkah ...
published: 27 Dec 2024
Play in Full Screen
0:00
🔴 Makkah Live HD | Mecca Live | Makkah Live Today Now 🕋
Makkah Live HD | Mecca Live | Makkah Live Today Now | mekka live | mecca | makka live | 2...
published: 25 Dec 2024
Play in Full Screen
1:15
Makkah's Masjid al-Haram Expansion Project - World's Largest Religious Structure! المسجد الحرام‎‎
Makkah's Masjid Al Haram is currently being expanded to accommodate more worshipers. Once ...
published: 29 Jun 2016
Play in Full Screen
0:24
Cleaner Masjid Al Haram #makkah #allah #makkahlivehd #makkahlive
Instagram. https://www.instagram.com/abdul_alim__f_a?igsh=MWNvd2d3MzBpN2dtbQ== Whatsa...
published: 24 Jan 2024
Play in Full Screen
3:00
Why Masjid al-Haram's Sound System Has Never Failed
Take a closer look at the mics! Subscribe for more videos like this ➡️ http://youtube.co...
published: 03 Aug 2020
Play in Full Screen
1:03
Why He Said NO To Being Masjid Al Haram Imam
Shaykh Saad Al Ghamidi reveals why he didn't take the position of Imam at Masjid al-Haram....
published: 06 Jan 2021
Play in Full Screen

Masjid al-Haram

The Masjid al-Ḥarām (Arabic: المسجد الحرام, literally "the sacred mosque"), also called the Sacred Mosque, and the Grand Mosque or Great Mosque of Mecca, is the largest mosque in the world and surrounds Islam's holiest place, the Kaaba, in the city of Mecca, Saudi Arabia. Muslims face in the Qibla (direction of the Kaaba) while performing Salat (obligatory daily prayers). One of the Five Pillars of Islam requires every Muslim to perform the Hajj pilgrimage, one of the largest annual gatherings of people in the world, at least once in his or her lifetime if able to do so, including Tawaf (circumambulation) of the Kaaba.

The current structure covers an area of 356,800 square metres (88.2 acres) including the outdoor and indoor praying spaces, it is open at all times.

History

Pre-Islamic era

The Quran states that Abraham, together with his son Ishmael, raised the foundations of a house [Quran 2:127] that is identified by most commentators as the Kaaba. Allah had shown Ibrahim the exact site, very near to the Well of Zamzam, where Abraham and Ishmael began work on the Kaaba's construction in circa 2130 BCE. After Abraham had built the Kaaba, an angel brought to him the Black Stone, a celestial stone that, according to tradition, had fallen from Heaven on the nearby hill Abu Qubays. According to a saying attributed to Muhammad, the Black Stone had "descended from Paradise whiter than milk but the sins of the sons of Adam had made it black". The Black Stone is believed to be the only remnant of the original structure made by Ibrahim.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: sacred mosque

Edit

Ramadan 2025: Worshippers' transport in Grand Mosque goes online

Gulf News 15 Mar 2025
Saudi authorities in charge of Islam's two holiest mosques have launched a unified platform to carry worshippers and pilgrims in the Grand Mosque as the numbers of the faithful are swelling during the current Muslim sacred month of Ramadan.
Edit

Nada Al-Ghamdi becomes first Saudi woman licensed to photograph Grand Mosque

The Siasat Daily 15 Mar 2025
In a groundbreaking achievement, Nada Abdullah Al-Ghamdi has made history as the first Saudi woman officially licensed to photograph inside Grand Mosque in Makkah ... Saudi Arabia launches hair cutting carts for women at Grand Mosque for first time.
Edit

Pakistan for tangible, effective steps to address rising tide of Islamophobia

Urdu Point 15 Mar 2025
</p><p>“Incidents of Islamophobic rhetoric, hate speech, and assaults on Muslim communities, mosques, and sacred symbols are serious violations of ...
Edit

Nearly 4m vehicles use Mecca roads in 10 days of Ramadan

Gulf News 14 Mar 2025
More than 3.7 million vehicles used roads leading to the Saudi city of Mecca, home to Islam's holiest mosque, in the first 10 days of the current Islamic month of Ramadan, the kingdom's road authorities have said.
Edit

1.5 million dates offered daily to fast-breaking worshippers in Prophet's mosque

Gulf News 14 Mar 2025
More than 1.5 million dates are distributed daily to worshippers to break their day-long fast in the Prophet's Mosque, Islam's second holiest in the Saudi city of Medina, during the current Muslim sacred month of Ramadan.
Edit

Ashrafi condemns Jaffer Express attack, calls for unity, action against terrorism

Urdu Point 13 Mar 2025
... is akin to killing all of humanity.</p><p>Expressing deep concern, he lamented that those who do not respect Ramazan and humanity would not hesitate to target sacred places like mosques.
Edit

Capital Police host Iftar for journalists; IG Rizvi assures Islamabad is in safe hands

Urdu Point 13 Mar 2025
</p><p>IGP Rizvi reiterated that ensuring the safety of mosques, imambargahs, and other public venues is not just a duty but a sacred responsibility, which he considers an act of worship.
Edit

Ramadan 2025:  Safety bracelets for kids in Prophet's Mosque in Saudi Arabia's Medina

Gulf News 12 Mar 2025
... 20,000 hours for teaching and correcting recitation of Islam's sacred text in the Prophet’s Mosque, and scholarly courses provided in 10 languages ​​to accommodate students of different nationalities.
Edit

Tourism and Tradition at Crossroads

Kashmir Observer 12 Mar 2025
... embark on sacred pilgrimages to Amarnath and Vaishno Devi ... Remember that the mosques, shrines, and sacred spaces you encounter are not just tourist attractions—they are the heartbeats of a community.
Edit

Kuwait bans commercial advertisements in mosques

Gulf News 11 Mar 2025
The fatwa emphasizes that mosques are sacred places of worship and should not be used to promote products, services, or commercial goods, as such actions conflict with their spiritual purpose.
Edit

Ramadan 2025: Online guide to congestion levels in Mecca's Grand Mosque in Saudi Arabia

Gulf News 11 Mar 2025
The month of Ramadan, noted for devout worshipping, traditionally marks the peak season for Umrah, or the minor pilgrimage, in the Grand Mosque. In the run-up to the sacred month, Saudi authorities ...
Edit

Ramadan 2025: Multilingual exhibit on history of Kaaba opens at Mecca's Grand Mosque in Saudi Arabia

Gulf News 09 Mar 2025
A Saudi exhibition is being held in the Grand Mosque, Islam's holiest in Mecca, on the history of the sacred Kaaba ... The exhibit at an expansion of the Grand Mosque offers visitors and pilgrims a unique ...
Edit

Jamia Masjid Illumination Project ‘Historic’, First Phase Completed

Kashmir Observer 09 Mar 2025
May this enhancement add to the spiritual experience of all who visit this sacred place,” wrote Mirwaiz. Notably, the illumination, he said, will not only beautify the centuries-old mosque but also ...
Edit

Arab Hatred of Jews Predates the State of Israel

The American Spectator 09 Mar 2025
... part of the Second Temple), he fabricated charges that the Jews planned to destroy the Al-Aqsa Mosque, the third-most-sacred Islamic site (which stands above the Wall) so as to rebuild their Temple.
Edit

Saudi Arabia begins renovation of historic Al-Fath mosque in Makkah

The Siasat Daily 08 Mar 2025
The Kingdom of Saudi Arabia (KSA) is undertaking the renovation of the Al-Fath Mosque located at Makkah’s Al-Jumum Governorate ... Saudi Arabia begins renovation of historic Al-Qalaa mosque in Madinah.
×