'+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; })); }); -->

Zamzam Well

The Well of Zamzam (or the Zamzam Well, or just Zamzam; Arabic: زمزم) is a well located within the Masjid al-Haram in Mecca, Saudi Arabia, 20 m (66 ft) east of the Kaaba, the holiest place in Islam. According to Islamic belief, it is a miraculously generated source of water from God, which began thousands of years ago when Abraham's (Ibrāhīm) infant son Ishmael (ʼIsmāʻīl) was thirsty and kept crying for water. Millions of pilgrims visit the well each year while performing the Hajj or Umrah pilgrimages, in order to drink its water.

Traditional origin of the Zamzam Well

Islamic tradition states that the Zamzam Well was revealed to Hagar (Hājar), the second wife of Abraham and mother of Ishmael. By the instruction of God, Abraham left his wife and son at a spot in the desert and walked away. She was desperately seeking water for her infant son, but she could not find any, as Mecca is located in a hot dry valley with few sources of water. Hagar ran seven times back and forth in the scorching heat between the two hills of Safa and Marwah, looking for water. Getting thirstier by the second, the infant Ishmael scraped the land with his feet, where suddenly water sprang out. There are other versions of the story involving God sending his angel, Gabriel (Jibra'il), who kicked the ground with his heel (or wing), and the water rose. A similar story about a well is also mentioned in the Bible.

Zamzam (soft drink)

Zamzam (Persian: زمزم formerly Zamzam Cola) is a brand of soft drink produced in Iran by Zamzam Group. It is particularly popular in parts of the Muslim world, having gained a status there as a Muslim alternative to American products such as Coca-Cola and Pepsi. Zamzam is also one of the few remaining soda companies in Iran that uses refillable glass bottles.

The director of the Zamzam Group is Ahmad-Haddad Moghaddam. Zamzam Group is owned by the Mostazafan Foundation.

History

Originally a subsidiary of Pepsi created in Iran in 1954 as the first Iranian carbonated soft drink producer, Zamzam became its own corporation following the 1979 Islamic Revolution.

Following the 2002 boycott of Coca-Cola by Saudi Arabia, Zamzam was unofficially dubbed the soft drink of the Hajj.

The product's name is a reference to the Well of Zamzam in Mecca, that is one of the stops on the Islamic pilgrimage of the Hajj.

The headquarters of Zamzam are in Tehran, Iran. The bottling facility in Tehran is a popular attraction where people can see the drink being bottled. Due to the bottling facility's proximity to Mehrebad airport tourists often stop to look.

Podcasts:

  • Gașca Zurli - A ram sam sam

    Gașca Zurli cântă iubita melodie A ram sam sam live, în concert! Tu poți să ții pasul? Ascultă melodia A ram sam sam și dansează alături de Gașca Zurli! Atențiunee, accelerăm! 🔔Abonează-te accesând link-ul următor: https://goo.gl/QYiZoz 🎵Versuri: A ram sam sam A ram sam sam Guli guli guli guli guli ram sam sam A ram sam sam A ram sam sam Guli guli guli guli guli ram sam sam A ra-fi, a ra-fi Guli guli guli guli guli ram sam sam A ra-fi, a ra-fi Guli guli guli guli guli ram sam sam Atentiuneeee, aceleraaaam! #gascazurli #zurli #aramsamsam 😘Vrei sa fii notificat cand apare un material nou? Aboneaza-te aici: https://goo.gl/AtdByI 😘Vrei sa faci un cadou Zurli? Aici este noul nostru magazin: www.magazinulzurli.ro 👏Urmareste-ne si pe: Site: http://zurli.ro/ Facebook: https://www.facebo...

    published: 15 Jul 2016
  • The cute children pranked😂with choty waidy paiyan#Abdul Ghafoor#Muhammad_Shakoor

    www.zamelect.ae

    published: 19 Nov 2023
  • World tallest man coming at zamzam www.zamelect.ae Main branch#Abdul Ghafoor#Muhammad_Shakoor

    published: 06 Oct 2023
  • The new big offers is running on USA shipment of iPhones at zamzam#Abdul_Ghafoor#Muhammad_Shakoor

    www.zamelect.ae

    published: 07 Jan 2024
  • A Ram Sam Sam song for kids + more nursery rhymes by HeyKids

    🌟 Dance on the brand new 2024 version of Aram Sam Sam! 🌟 https://youtu.be/CqzLFtD0rnw The most beautiful animated nursery rhymes compilation: "A Ram Sam Sam song" and many more songs for kids! Subscribe now: http://www.youtube.com/channel/UCMsQNXla0kQU5337ipRj1eQ?sub_confirmation=1 🎵 HeyKids Spotify & Apple Music: https://lnk.to/heykids-music Songs for kids playlist ▶ https://www.youtube.com/watch?v=eg3XVvvr2fA&list=PLENNzH6UJSySZPOBzz4IkmEccOtLMlwBS New! KeyKids iOS app and Android app! Download it from App Store: https://itunes.apple.com/us/app/nursery-rhymes-heykids/id1175092099?ls=1&mt=8 and Google Play Store: https://play.google.com/store/apps/details?id=com.heykids.nurseryrhymes.app Facebook: https://www.facebook.com/heykids.nursery.rhymes/ 0:00 A Ram Sam Sam 3:49 Happy Birthda...

    published: 21 Feb 2018
  • Jurassic World 🦖🦕 || Musa/Zamzam Darr Gaiy 😱 || Short Video

    Jurassic World || Musa/Zamzam Darr Gaiy || Short Video Your quarries: Jurassic World Musa/Zamzam Darr Gaiy Short Video For Membership join my channel https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join this channel to get access to perks: https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join For Business Inquiry: mujeetanveer@gmail.com Watch Full Playlist : https://youtube.com/playlist?list=PL7GLZRiC-MkZV7Yj-Kq2gjjuN7TQ0apMU Important Video For New Youtubers:- https://youtu.be/3QBgRtBo-PQ Social media links: Facebook : www.facebook.com/@musatanveer Instagram : www.Instagram.com@musamujeez TikTok : www.tiktok.com/@musatanveerdubai #shortstories #trending #musatanveer @musatanveer #shortvideo #yearofyou THANKS FOR WATCHING THIS VIDEO Musa Tanveer Fro...

    published: 03 Feb 2023
  • Zamzam Water under the microscope looks AMAZING!

    Paraphrased from Wikipedia: This is one of my most requested videos! What is Zamzam water? According to Islamic and other religious narratives, the Zamzam water is sourced from the Zamzam well; this is a miraculously generated source of water, which opened up thousands of years ago when the son of Ibrahim (Abraham), Ismaʿil (Ishmael), was left with his mother Hajar (Hagar) in the desert. The Zamzam Well is a well located within the Masjid al-Haram in Mecca, Saudi Arabia. It is located east of the Kaʿba; the holiest place in Islam. From a scientific perspective Zamzam water is colourless and odorless, but has a distinctive taste, with a pH of 7.9–8, and so is slightly alkaline. It has a relatively high concentration of magnesium, calcium, potassium and sodium. For those who want t...

    published: 28 Jun 2023
  • Watch❤️Created a new lovely story with Chota Don#Abdul_Ghafoor#Muhammad_Shakoor

    www.zamelect.ae

    published: 23 Jan 2024
  • Triggered Car 🚖 || Chor Aunty 😩 || Zamzam Birthday || Short Video 🎉​⁠@MUSATANVEER

    Triggered Car || Chor Aunty || Zamzam Birthday ||Short Video ​⁠ Video Your quarries: Triggered Car Chor Aunty Zamzam Birthday Short Video For Membership join my channel https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join this channel to get access to perks: https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join For Business Inquiry: mujeetanveer@gmail.com Watch Full Playlist : https://youtube.com/playlist?list=PL7GLZRiC-MkZV7Yj-Kq2gjjuN7TQ0apMU Important Video For New Youtubers:- https://youtu.be/3QBgRtBo-PQ Social media links: Facebook : www.facebook.com/@musatanveer Instagram : www.Instagram.com@musamujeez TikTok : www.tiktok.com/@musatanveerdubai #shortvideo #trending #musatanveer #viral #foryou ​⁠ THANKS FOR WATCHING THIS VIDEO Musa Tanveer Fr...

    published: 14 Dec 2023
  • Zamzam Ne Dhaika Appi Ka Sone Ka Dant 😳 || Entertainment

    Zamzam Ne Dhaika Appi Ka Sone Ka Dant || Entertainment #motivation #shortstories #dubai #trending #trending

    published: 11 Apr 2023
Gașca Zurli - A ram sam sam
2:00

Gașca Zurli - A ram sam sam

  • Order:
  • Duration: 2:00
  • Uploaded Date: 15 Jul 2016
  • views: 453300760
Gașca Zurli cântă iubita melodie A ram sam sam live, în concert! Tu poți să ții pasul? Ascultă melodia A ram sam sam și dansează alături de Gașca Zurli! Atențiunee, accelerăm! 🔔Abonează-te accesând link-ul următor: https://goo.gl/QYiZoz 🎵Versuri: A ram sam sam A ram sam sam Guli guli guli guli guli ram sam sam A ram sam sam A ram sam sam Guli guli guli guli guli ram sam sam A ra-fi, a ra-fi Guli guli guli guli guli ram sam sam A ra-fi, a ra-fi Guli guli guli guli guli ram sam sam Atentiuneeee, aceleraaaam! #gascazurli #zurli #aramsamsam 😘Vrei sa fii notificat cand apare un material nou? Aboneaza-te aici: https://goo.gl/AtdByI 😘Vrei sa faci un cadou Zurli? Aici este noul nostru magazin: www.magazinulzurli.ro 👏Urmareste-ne si pe: Site: http://zurli.ro/ Facebook: https://www.facebook.com/gascazurli/ Insta: https://www.instagram.com/gasca_zurli/?hl=ro Cu aceste cuvinte poți găsi mai repede clipul: aramsamsam, a-ram-sam-sam,a ram sam sam,ara sam sam,gasca zurli,cantece gasca zurli,cantece zurli,gasca zurli live,concert gasca zurli,cantec a ram sam sam ❤️Programul spectacolelor Gasca Zurli: http://zurli.ro/evenimente/ Acesta este pagina Youtube a Gastii Zurli. Zurli este cea mai mare companie privată de animație pentru copii, din România. Spectacolele noastre sunt despre MAGIA care apare când li se spune copiilor povestea potrivită SUFLETULUI lor. Noi am transformat ideea de educație (plictisitoare, neatractivă pentru copii) într-un SPECTACOL AL IMAGINAȚIEI pe care cei mici îl pot accesa oricând pentru a face lumea din jurul lor mai bună. 💥Ai urmarit si ...? 🎼A ram sam sam: https://youtu.be/HwoXD_RVETg 🎼Am o casuta mica: https://youtu.be/Ke08aV6YpjY 🎼Linguseala de catel: https://youtu.be/AHQHS7w9-t8 🎼Tura Vura: https://youtu.be/IVS_8JTfdHc 🎼Video-ul oficial al cantecului pentru copii Am o casuta mica: https://youtu.be/_gTYZp2BsI0 cantece pentru copii, muzica pentru copii, cantece copii, muzica copii, cantece pt copii, muzica de copii, cantece de copii, muzica pt copii, cantece de gradinita, cantece educative. Spectacole Zurli, Gasca Zurli, Fetita Zurli, Tanti prezentatoarea, Mirela Retegan, Vrajimaturica, Zana buna, TuraVura, vrajitoarea TuraVura, Clopotel, Zdranganel, Multumesc Toate informatiile legate de Gasca Zurli sunt disponibile pe site-ul oficial: www.zurli.ro. YouTube network - BrandTube Romania: www.brandutbe.ro / office@brandtube.ro
https://wn.com/Gașca_Zurli_A_Ram_Sam_Sam
The cute children pranked😂with choty waidy paiyan#Abdul Ghafoor#Muhammad_Shakoor
0:14

The cute children pranked😂with choty waidy paiyan#Abdul Ghafoor#Muhammad_Shakoor

  • Order:
  • Duration: 0:14
  • Uploaded Date: 19 Nov 2023
  • views: 189788168
www.zamelect.ae
https://wn.com/The_Cute_Children_Pranked😂With_Choty_Waidy_Paiyan_Abdul_Ghafoor_Muhammad_Shakoor
World tallest man coming at zamzam www.zamelect.ae Main branch#Abdul Ghafoor#Muhammad_Shakoor
0:27

World tallest man coming at zamzam www.zamelect.ae Main branch#Abdul Ghafoor#Muhammad_Shakoor

  • Order:
  • Duration: 0:27
  • Uploaded Date: 06 Oct 2023
  • views: 107590957
https://wn.com/World_Tallest_Man_Coming_At_Zamzam_Www.Zamelect.Ae_Main_Branch_Abdul_Ghafoor_Muhammad_Shakoor
The new big offers is running on USA shipment of iPhones at zamzam#Abdul_Ghafoor#Muhammad_Shakoor
0:29

The new big offers is running on USA shipment of iPhones at zamzam#Abdul_Ghafoor#Muhammad_Shakoor

  • Order:
  • Duration: 0:29
  • Uploaded Date: 07 Jan 2024
  • views: 5457333
www.zamelect.ae
https://wn.com/The_New_Big_Offers_Is_Running_On_USA_Shipment_Of_Iphones_At_Zamzam_Abdul_Ghafoor_Muhammad_Shakoor
A Ram Sam Sam song for kids + more nursery rhymes by HeyKids
37:24

A Ram Sam Sam song for kids + more nursery rhymes by HeyKids

  • Order:
  • Duration: 37:24
  • Uploaded Date: 21 Feb 2018
  • views: 375939385
🌟 Dance on the brand new 2024 version of Aram Sam Sam! 🌟 https://youtu.be/CqzLFtD0rnw The most beautiful animated nursery rhymes compilation: "A Ram Sam Sam song" and many more songs for kids! Subscribe now: http://www.youtube.com/channel/UCMsQNXla0kQU5337ipRj1eQ?sub_confirmation=1 🎵 HeyKids Spotify & Apple Music: https://lnk.to/heykids-music Songs for kids playlist ▶ https://www.youtube.com/watch?v=eg3XVvvr2fA&list=PLENNzH6UJSySZPOBzz4IkmEccOtLMlwBS New! KeyKids iOS app and Android app! Download it from App Store: https://itunes.apple.com/us/app/nursery-rhymes-heykids/id1175092099?ls=1&mt=8 and Google Play Store: https://play.google.com/store/apps/details?id=com.heykids.nurseryrhymes.app Facebook: https://www.facebook.com/heykids.nursery.rhymes/ 0:00 A Ram Sam Sam 3:49 Happy Birthday: https://goo.gl/3DNISO 5:26 The Finger Family: https://goo.gl/NytSrZ 6:38 The Wheels On The Bus Go Round And Round: https://goo.gl/e7aKHT 8:58 Five Little Monkeys Jumping On The Bed: https://goo.gl/hzJJNG 11:02 Rain Rain Go Away: https://goo.gl/u7fFvg 12:58 Row Row Row Your Boat: https://goo.gl/Bmo1WC 14:40 Spock-a Doodle, Chicken Noodle: https://goo.gl/G6wMZp 17:28 The Little Boat: https://goo.gl/sFzLt4 19:21 If You're Happy And You Know It: http://goo.gl/jCmnkh 20:36 Old MacDonald Had A Farm: http://goo.gl/EgCfI3 23:39 Five Little Ducks: https://goo.gl/lr9LKQ 25:22 Humpty Dumpty Sat On A Wall: https://goo.gl/jY86c4 26:55 Bingo: https://goo.gl/juFt8R 29:39 Six Little Ducks: https://goo.gl/nq91vC 30:59 Are You Sleeping? Brother John: https://goo.gl/VixoLn 32:48 Incy Wincy Spider: http://goo.gl/QUyPFK 34:24 The Crocodile Song: https://goo.gl/d3UviN A Ram Sam Sam song lyrics ----------------------------------------------------------------------------------- A ram sam sam A ram sam sam Guli guli guli guli guli Ram sam sam A ram sam sam A ram sam sam Guli guli guli guli guli Ram sam sam A rafiq, a rafiq Guli guli guli guli guli Ram sam sam A rafiq, a rafiq Guli guli guli guli guli Ram sam sam A Ram Sam Sam: ------------------------------------------ A Ram Sam Sam: https://www.youtube.com/watch?v=935UBEm0gg0 A Ram Sam Sam: https://www.youtube.com/watch?v=DDrqX4h9Mp4 Арам Зам Зам: https://www.youtube.com/watch?v=d8IJpspU2m0 АРАМ ЗАМ ЗАМ: https://www.youtube.com/watch?v=ZlCuzq8BJqw A Ram Sam Sam: https://www.youtube.com/watch?v=o0gJPYglhuQ A Ram Sam Sam: https://www.youtube.com/watch?v=bJB0nV1j6VE Thanks for watching "A Ram Sam Sam", song for children! HeyKids.com - Nursery Rhymes for kids and babies ------------------------------------------------ © 2018 Vveee Media Limited. ------------------------------------------------
https://wn.com/A_Ram_Sam_Sam_Song_For_Kids_More_Nursery_Rhymes_By_Heykids
Jurassic World 🦖🦕 || Musa/Zamzam Darr Gaiy 😱 || Short Video
9:46

Jurassic World 🦖🦕 || Musa/Zamzam Darr Gaiy 😱 || Short Video

  • Order:
  • Duration: 9:46
  • Uploaded Date: 03 Feb 2023
  • views: 4769638
Jurassic World || Musa/Zamzam Darr Gaiy || Short Video Your quarries: Jurassic World Musa/Zamzam Darr Gaiy Short Video For Membership join my channel https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join this channel to get access to perks: https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join For Business Inquiry: mujeetanveer@gmail.com Watch Full Playlist : https://youtube.com/playlist?list=PL7GLZRiC-MkZV7Yj-Kq2gjjuN7TQ0apMU Important Video For New Youtubers:- https://youtu.be/3QBgRtBo-PQ Social media links: Facebook : www.facebook.com/@musatanveer Instagram : www.Instagram.com@musamujeez TikTok : www.tiktok.com/@musatanveerdubai #shortstories #trending #musatanveer @musatanveer #shortvideo #yearofyou THANKS FOR WATCHING THIS VIDEO Musa Tanveer From UAE
https://wn.com/Jurassic_World_🦖🦕_||_Musa_Zamzam_Darr_Gaiy_😱_||_Short_Video
Zamzam Water under the microscope looks AMAZING!
0:47

Zamzam Water under the microscope looks AMAZING!

  • Order:
  • Duration: 0:47
  • Uploaded Date: 28 Jun 2023
  • views: 6197199
Paraphrased from Wikipedia: This is one of my most requested videos! What is Zamzam water? According to Islamic and other religious narratives, the Zamzam water is sourced from the Zamzam well; this is a miraculously generated source of water, which opened up thousands of years ago when the son of Ibrahim (Abraham), Ismaʿil (Ishmael), was left with his mother Hajar (Hagar) in the desert. The Zamzam Well is a well located within the Masjid al-Haram in Mecca, Saudi Arabia. It is located east of the Kaʿba; the holiest place in Islam. From a scientific perspective Zamzam water is colourless and odorless, but has a distinctive taste, with a pH of 7.9–8, and so is slightly alkaline. It has a relatively high concentration of magnesium, calcium, potassium and sodium. For those who want to read more, check out this journal article: https://www.tandfonline.com/doi/full/10.1080/10942912.2012.660721 #shorts #microscope #Zamzam #water #science #electrolytes #closeup #microscopechallenge
https://wn.com/Zamzam_Water_Under_The_Microscope_Looks_Amazing
Watch❤️Created a new lovely story with Chota Don#Abdul_Ghafoor#Muhammad_Shakoor
0:43

Watch❤️Created a new lovely story with Chota Don#Abdul_Ghafoor#Muhammad_Shakoor

  • Order:
  • Duration: 0:43
  • Uploaded Date: 23 Jan 2024
  • views: 4081687
www.zamelect.ae
https://wn.com/Watch❤️Created_A_New_Lovely_Story_With_Chota_Don_Abdul_Ghafoor_Muhammad_Shakoor
Triggered Car 🚖 || Chor Aunty 😩 || Zamzam Birthday || Short Video 🎉​⁠@MUSATANVEER
11:27

Triggered Car 🚖 || Chor Aunty 😩 || Zamzam Birthday || Short Video 🎉​⁠@MUSATANVEER

  • Order:
  • Duration: 11:27
  • Uploaded Date: 14 Dec 2023
  • views: 383751
Triggered Car || Chor Aunty || Zamzam Birthday ||Short Video ​⁠ Video Your quarries: Triggered Car Chor Aunty Zamzam Birthday Short Video For Membership join my channel https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join this channel to get access to perks: https://www.youtube.com/channel/UC6jRgc_w-nCk7oAoM6lwNNQ/join For Business Inquiry: mujeetanveer@gmail.com Watch Full Playlist : https://youtube.com/playlist?list=PL7GLZRiC-MkZV7Yj-Kq2gjjuN7TQ0apMU Important Video For New Youtubers:- https://youtu.be/3QBgRtBo-PQ Social media links: Facebook : www.facebook.com/@musatanveer Instagram : www.Instagram.com@musamujeez TikTok : www.tiktok.com/@musatanveerdubai #shortvideo #trending #musatanveer #viral #foryou ​⁠ THANKS FOR WATCHING THIS VIDEO Musa Tanveer From UAE ​⁠
https://wn.com/Triggered_Car_🚖_||_Chor_Aunty_😩_||_Zamzam_Birthday_||_Short_Video_🎉​⁠_Musatanveer
Zamzam Ne Dhaika Appi Ka Sone Ka Dant 😳 || Entertainment
10:56

Zamzam Ne Dhaika Appi Ka Sone Ka Dant 😳 || Entertainment

  • Order:
  • Duration: 10:56
  • Uploaded Date: 11 Apr 2023
  • views: 517096
Zamzam Ne Dhaika Appi Ka Sone Ka Dant || Entertainment #motivation #shortstories #dubai #trending #trending
https://wn.com/Zamzam_Ne_Dhaika_Appi_Ka_Sone_Ka_Dant_😳_||_Entertainment
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:14:13

Gașca Zurli - A ram sam sam

Gașca Zurli cântă iubita melodie A ram sam sam live, în concert! Tu poți să ții pasul? Ascultă melodia A ram sam sam și dansează alături de Gașca Zurli! Atențiunee, accelerăm! 🔔Abonează-te accesând link-ul următor: https://goo.gl/QYiZoz 🎵Versuri: A ram sam sam A ram sam sam Guli guli guli guli guli ram sam sam A ram sam sam A ram sam sam Guli guli guli guli guli ram sam sam A ra-fi, a ra-fi Guli guli guli guli guli ram sam sam A ra-fi, a ra-fi Guli guli guli guli guli ram sam sam Atentiuneeee, aceleraaaam! #gascazurli #zurli #aramsamsam 😘Vrei sa fii notificat cand apare un material nou? Aboneaza-te aici: https://goo.gl/AtdByI 😘Vrei sa faci un cadou Zurli? Aici este noul nostru magazin: www.magazinulzurli.ro 👏Urmareste-ne si pe: Site: http://zurli.ro/ Facebook: https://www.facebook.com/gascazurli/ Insta: https://www.instagram.com/gasca_zurli/?hl=ro Cu aceste cuvinte poți găsi mai repede clipul: aramsamsam, a-ram-sam-sam,a ram sam sam,ara sam sam,gasca zurli,cantece gasca zurli,cantece zurli,gasca zurli live,concert gasca zurli,cantec a ram sam sam ❤️Programul spectacolelor Gasca Zurli: http://zurli.ro/evenimente/ Acesta este pagina Youtube a Gastii Zurli. Zurli este cea mai mare companie privată de animație pentru copii, din România. Spectacolele noastre sunt despre MAGIA care apare când li se spune copiilor povestea potrivită SUFLETULUI lor. Noi am transformat ideea de educație (plictisitoare, neatractivă pentru copii) într-un SPECTACOL AL IMAGINAȚIEI pe care cei mici îl pot accesa oricând pentru a face lumea din jurul lor mai bună. 💥Ai urmarit si ...? 🎼A ram sam sam: https://youtu.be/HwoXD_RVETg 🎼Am o casuta mica: https://youtu.be/Ke08aV6YpjY 🎼Linguseala de catel: https://youtu.be/AHQHS7w9-t8 🎼Tura Vura: https://youtu.be/IVS_8JTfdHc 🎼Video-ul oficial al cantecului pentru copii Am o casuta mica: https://youtu.be/_gTYZp2BsI0 cantece pentru copii, muzica pentru copii, cantece copii, muzica copii, cantece pt copii, muzica de copii, cantece de copii, muzica pt copii, cantece de gradinita, cantece educative. Spectacole Zurli, Gasca Zurli, Fetita Zurli, Tanti prezentatoarea, Mirela Retegan, Vrajimaturica, Zana buna, TuraVura, vrajitoarea TuraVura, Clopotel, Zdranganel, Multumesc Toate informatiile legate de Gasca Zurli sunt disponibile pe site-ul oficial: www.zurli.ro. YouTube network - BrandTube Romania: www.brandutbe.ro / office@brandtube.ro
2:00
Gașca Zurli - A ram sam sam
Gașca Zurli cântă iubita melodie A ram sam sam live, în concert! Tu poți să ții pasul? Asc...
published: 15 Jul 2016
Play in Full Screen
0:14
The cute children pranked😂with choty waidy paiyan#Abdul Ghafoor#Muhammad_Shakoor
www.zamelect.ae
published: 19 Nov 2023
Play in Full Screen
0:27
World tallest man coming at zamzam www.zamelect.ae Main branch#Abdul Ghafoor#Muhammad_Shakoor
published: 06 Oct 2023
Play in Full Screen
0:29
The new big offers is running on USA shipment of iPhones at zamzam#Abdul_Ghafoor#Muhammad_Shakoor
www.zamelect.ae
published: 07 Jan 2024
Play in Full Screen
37:24
A Ram Sam Sam song for kids + more nursery rhymes by HeyKids
🌟 Dance on the brand new 2024 version of Aram Sam Sam! 🌟 https://youtu.be/CqzLFtD0rnw The...
published: 21 Feb 2018
Play in Full Screen
9:46
Jurassic World 🦖🦕 || Musa/Zamzam Darr Gaiy 😱 || Short Video
Jurassic World || Musa/Zamzam Darr Gaiy || Short Video Your quarries: Jurassic World M...
published: 03 Feb 2023
Play in Full Screen
0:47
Zamzam Water under the microscope looks AMAZING!
Paraphrased from Wikipedia: This is one of my most requested videos! What is Zamzam wa...
published: 28 Jun 2023
Play in Full Screen
0:43
Watch❤️Created a new lovely story with Chota Don#Abdul_Ghafoor#Muhammad_Shakoor
www.zamelect.ae
published: 23 Jan 2024
Play in Full Screen
11:27
Triggered Car 🚖 || Chor Aunty 😩 || Zamzam Birthday || Short Video 🎉​⁠@MUSATANVEER
Triggered Car || Chor Aunty || Zamzam Birthday ||Short Video ​⁠ Video Your quarries: T...
published: 14 Dec 2023
Play in Full Screen
10:56
Zamzam Ne Dhaika Appi Ka Sone Ka Dant 😳 || Entertainment
Zamzam Ne Dhaika Appi Ka Sone Ka Dant || Entertainment #motivation #shortstories #dubai ...
published: 11 Apr 2023
Play in Full Screen

Zamzam Well

The Well of Zamzam (or the Zamzam Well, or just Zamzam; Arabic: زمزم) is a well located within the Masjid al-Haram in Mecca, Saudi Arabia, 20 m (66 ft) east of the Kaaba, the holiest place in Islam. According to Islamic belief, it is a miraculously generated source of water from God, which began thousands of years ago when Abraham's (Ibrāhīm) infant son Ishmael (ʼIsmāʻīl) was thirsty and kept crying for water. Millions of pilgrims visit the well each year while performing the Hajj or Umrah pilgrimages, in order to drink its water.

Traditional origin of the Zamzam Well

Islamic tradition states that the Zamzam Well was revealed to Hagar (Hājar), the second wife of Abraham and mother of Ishmael. By the instruction of God, Abraham left his wife and son at a spot in the desert and walked away. She was desperately seeking water for her infant son, but she could not find any, as Mecca is located in a hot dry valley with few sources of water. Hagar ran seven times back and forth in the scorching heat between the two hills of Safa and Marwah, looking for water. Getting thirstier by the second, the infant Ishmael scraped the land with his feet, where suddenly water sprang out. There are other versions of the story involving God sending his angel, Gabriel (Jibra'il), who kicked the ground with his heel (or wing), and the water rose. A similar story about a well is also mentioned in the Bible.

'); } 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: zamzam

Edit

Survivors describe executions, arson in attack on Sudan’s Zamzam camp

Arab News 19 Apr 2025
Updated 4 min 24 sec ago. Reuters. April 19, 2025 06.00. .
Edit

Survivors describe executions, arson in attack on Sudan's Zamzam camp

The Star 19 Apr 2025
(Reuters) - Sitting in a crowd of mothers and children ...
Edit

Darfur: UN fears catastrophic situation as RSF claims Zamzam refugee camp

France24 18 Apr 2025
Civilians fear further violence as fighters close in on the city, including the Zamzam ...
Edit

Desperate situation for people fleeing Zamzam camp in Sudan

APO 18 Apr 2025
The RSF and their allied armed groups stormed Zamzam, Sudan’s largest displacement camp, which used to host at least 500,000 people near El Fasher, after months of an increasingly tight siege on the area.
Edit

‘They were chanting as they killed people in their homes’: survivors describe attack on Sudan’s Zamzam camp

The Observer 18 Apr 2025
An estimated 700,000 people had sought refuge in Zamzam, Sudan’s largest displacement camp, but last weekend they were forced to seek cover and plot the best escape route ... The battle for Zamzam raged for three days.
Edit

UN Officials Concerned Over Escalating Sudan War After Armed Groups Take Over Zamzam Camp

MENA FN 17 Apr 2025
(MENAFN - IANS) United Nations, April 17 (IANS) Aid officials are extremely concerned about an escalating Sudan war following reports of atrocities in the take over of the Zamzam displacement camp ... .
Edit

Sudan: Half a Million People Flee 'Final Catastrophe' As Zamzam Camp 'Obliterated'

All Africa 17 Apr 2025
El Fasher -- Escalating hostilities and attacks in North Darfur over the ...
Edit

UN officials concerned about escalating Sudan war after armed groups take over Zamzam camp

China Daily 17 Apr 2025
UNITED NATIONS - Aid officials are extremely concerned about an escalating Sudan war following reports of atrocities in the takeover of Zamzam displacement camp in North Darfur by armed groups, UN humanitarians said on Wednesday.
Edit

UN raises alarm over atrocities in Sudan’s Zamzam camp takeover

The Siasat Daily 17 Apr 2025
Aid officials are extremely concerned about an escalating Sudan war following reports of atrocities in the take over of the Zamzam displacement camp in North Darfur by armed groups, UN humanitarians said.
Edit

R.S.F. in Sudan Declare Parallel Government Amid Assault on Zamzam Camp

New York Times 16 Apr 2025
The United Nations said that at least 300 people were killed when the armed group, the Rapid Support Forces, stormed a camp in Darfur ... .
Edit

RSF Declares Rival Government, ‘Seizes’ Zamzam Camp As Sudan Conflict Enters Third Year

News18 16 Apr 2025
The RSF claimed control of a major displaced persons camp ... n18oc_crux .
Edit

Families fleeing attacks in Sudan’s Zamzam camp arrive injured, traumatised, with nothing to eat – ...

APO 16 Apr 2025
Thousands of families have arrived injured, traumatised and with no food or water in the town of Tawila after journeys of up to 70km (40 miles) on foot to flee attacks in Sudan’s Zamzam and Al Shouk camps, Save the Children said.
Edit

Egypt condemns attacks on Zamzam camp in Sudan’s North Darfur

Egypt Independent 15 Apr 2025
CAIRO, April 13 (MENA) – Egypt condemned deadly attacks on the Zamzam camp which shelters displaced people in El-Fasher ...
×