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

1948 Palestinian exodus

The 1948 Palestinian exodus, also known as the Nakba (Arabic: النكبة, "al-Nakbah", literally "disaster", "catastrophe", or "cataclysm"), occurred when more than 700,000 Palestinian Arabs fled or were expelled from their homes, during the 1948 Palestine war. The term "nakba" also refers to the period of war itself and events affecting Palestinians from December 1947 to January 1949.

The precise number of refugees is a matter of dispute but around 80 percent of the Arab inhabitants of what became Israel (50 percent of the Arab total of Mandatory Palestine) left or were expelled from their homes.

The causes are also a subject of fundamental disagreement between Arabs and Israelis. Factors involved in the exodus include Jewish military advances, attacks against Arab villages and fears of another massacre by Zionist militias after the Deir Yassin massacre, which caused many to leave out of panic; Arab evacuation orders; expulsion orders by Israeli authorities; the voluntary self-removal of the wealthier classes, the collapse in Palestinian leadership, and an unwillingness to live under Jewish control.

Podcasts:

  • How Palestinians were expelled from their homes

    The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO Around the time that Israelis celebrate Independence Day, Palestinians commemorate “The Nakba,” or “The Catastrophe.” The Nakba was a series of events, centered around 1948, that expelled hundreds of thousands Palestinians from their homeland and killed thousands. The Nakba isn’t the beginning of the story, but it’s a key part of Palestinian history — and the root of Israel’s creation. Prior to the Nakba, Palestine had a thriving population — largely made up of Arabs — that had lived and worked the land for centuries. But with the founding of Zionism, years of British meddling, and a British pledge to help create a Jewish state in Palestine — things began t...

    published: 15 May 2023
  • How did the Nakba happen? | Al Jazeera English

    70 years have passed since the Nakba, the “catastrophe” in Arabic, took place in Palestine in 1948. In which more than 750,000 Palestinians were forcefully displaced from their homes and pushed into refugee camps in East Jerusalem, the West Bank, the Gaza Strip and neighbouring countries. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/

    published: 13 May 2018
  • Al-Nakba: The Palestinian catastrophe - Episode 1 | Featured Documentary

    Al-Nakba: The Palestinian catastrophe "The Nakba did not begin in 1948. Its origins lie over two centuries ago…." So begins this four-part series on the 'nakba', meaning the 'catastrophe', about the history of the Palestinian exodus that led to the first Arab-Israeli war in 1948, and the establishment of the state of Israel. This sweeping history starts back in 1799 with Napoleon's attempted advance into Palestine to check British expansion and his appeal to the Jews of the world to reclaim their land in league with France. The narrative moves through the 19th century and into the 20th century with the British Mandate in Palestine and comes right up to date in the 21st century and the ongoing 'nakba' on the ground. Arab, Israeli and Western intellectuals, historians and eye-witnesses ...

    published: 08 May 2013
  • Why the Nakba is key to understanding Palestinian history #shorts

    Subscribe to our channel and turn on notifications (🔔) so you don't miss any videos: http://goo.gl/0bsAjO Vox is on a mission is to help everyone, regardless of income or status, understand our complicated world so that we can all help shape it. Part of that mission is keeping our work free. You can help us do that by making a gift: http://www.vox.com/give-now Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on TikTok: http://tiktok.com/@voxdotcom Check out our articles: https://www.vox.com/ Listen to our podcasts: https://www.vox.com/podcasts

    published: 19 Oct 2023
  • The Palestinian Refugee Problem Explained (Nakba and the Arab narrative) sub: DE, ES, FR, IT

    #nakba #vox Vox full video - https://www.youtube.com/watch?v=rGVgjS98OsU&t=4s&ab_channel=Vox Like my content? Want to support my work? Become a member and get early access to my videos as well as other perks! Support me on Ko - fi - https://ko-fi.com/travelingisrael 0:00 - Intro 1:00 - Deir Yassin intro 8:20 - The Partition plan 10: 55 - Plan D 14:10 - Deir Yassin 18:08 - The Battle of Haifa 20:35 - The Arab armies invaded Israel 21:09 - Palestinian refugees 23:00 - zoom out --- Follow me... ko-fi - https://ko-fi.com/travelingisrael Facebook - https://www.facebook.com/travelingisrael Instagram - https://www.instagram.com/travelingisrael/ Tiktok - https://www.tiktok.com/@travelingisrael1

    published: 03 Nov 2023
  • How the Palestinian ‘Nakba’ relates to the Israel-Gaza war

    In Arabic, “Nakba” refers to the mass expulsion of Palestinians in 1948 during the creation of Israel. Experts warn that history could be repeating itself. Read more: https://wapo.st/3QvZf11. Subscribe to The Washington Post on YouTube: https://wapo.st/2QOdcqK Follow us: Twitter: https://twitter.com/washingtonpost Instagram: https://www.instagram.com/washingtonpost/ Facebook: https://www.facebook.com/washingtonpost/

    published: 04 Nov 2023
  • The Arab-Israeli War of 1948 and Nakba explained

    Following the establishment of the State of #Israel, the #1948 Arab-Israeli war broke out. As a result, 700,000 #Palestinians were forced out of their homeland to other Arab nations. The event is remembered by the Arab world as the Nakba or “catastrophe”. Palestine: Nakba Day 🇵🇸 👉 http://trt.world/1q46 Palestine-Israel Conflict 👉 http://trt.world/13k1

    published: 14 May 2018
  • Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V

    Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V Thousands of Palestinians fled northern Gaza on Wednesday, traveling miles on foot through the battered enclave in a growing exodus as Israel intensifies its ground and air campaign. Thousands of Palestinians fled northern Gaza on Wednesday, traveling miles on foot through the battered enclave in a growing exodus as Israel intensifies its ground and air campaign. Streams of people – women, children, the elderly and disabled – made their way down Salah Eddin Street, one of the two north-south highways in Gaza, along an evacuation corridor announced by the Israel Defense Forces #gaza #gazaunderattack #israelpalestineconflict #israelhamaswar #israelvspalestine #hamasattack #englishnews #cnnnews1...

    published: 10 Nov 2023
  • Israeli minister admits of ‘a Nakba of Gaza’

    In an interview with Channel 12 news, Israeli Minister of Agriculture and former Shin Bet chief Avi Dichter described the current displacement and persecution of Palestinians in Gaza as “the Nakba of Gaza 2023”. Dichter has been calling for over a decade to re-occupy Gaza. The Nakba, or “catastrophe” as it’s known in English, refers to the ethnic cleansing of some 750,000 Palestinians from their lands and homes in historic Palestine to make way for the creation of Israel in 1948. Subscribe to our channel: http://ow.ly/AVlW30n1OWH Subscribe to MEE Telegram channel to stay up to date: https://t.me/MiddleEastEye_TG Middle East Eye Website: https://middleeasteye.net Follow us on TikTok: https://www.tiktok.com/@middleeasteye Follow us on Instagram: https://instagram.com/MiddleEastEye Like ...

    published: 12 Nov 2023
  • WHAT IS THE NAKBA?

    Find out more about an-Nakba, also known as the Palestinian Catastrophe. #Nakba #Palestine #Israel #1948 #Islam #Muslims SUBSCRIBE ► https://rb.gy/fj9rd1 Watch your favourite Islam Channel shows on-demand: http://www.islamchannel.tv Stay up to date on our social media channels: ►TWITTER: https://twitter.com/islamchannel ►FACEBOOK: http://www.facebook.com/islamchanneluk ►INSTAGRAM: http://www.instagram.com/islamchanneltv

    published: 15 May 2022
How Palestinians were expelled from their homes
16:26

How Palestinians were expelled from their homes

  • Order:
  • Duration: 16:26
  • Uploaded Date: 15 May 2023
  • views: 2182864
The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO Around the time that Israelis celebrate Independence Day, Palestinians commemorate “The Nakba,” or “The Catastrophe.” The Nakba was a series of events, centered around 1948, that expelled hundreds of thousands Palestinians from their homeland and killed thousands. The Nakba isn’t the beginning of the story, but it’s a key part of Palestinian history — and the root of Israel’s creation. Prior to the Nakba, Palestine had a thriving population — largely made up of Arabs — that had lived and worked the land for centuries. But with the founding of Zionism, years of British meddling, and a British pledge to help create a Jewish state in Palestine — things began to change drastically. By 1947, with increasing tensions between Jewish settlers and Palestinian Arabs — the British left Palestine, and the UN stepped in with a plan to partition the land into two states. What followed was known as Plan Dalet: operations by Israeli paramilitary groups that violently uprooted Palestinians. An estimated 15,000 Palestinians were killed, more than 500 villages were decimated, and roughly 750,000 Palestinians displaced. Most who were expelled from their homes couldn’t return to historic Palestine. And today, millions of their descendants live in refugee camps in Gaza, the West Bank and surrounding countries. The history of the Nakba has been deliberately concealed and often ignored in western narratives around the creation of Israel. In this episode of Missing Chapter, we break down how the Nakba happened — and how it defined the future of Palestine. Sources: Check out the documentary “1948: Creation & Catastrophe” by Ahlam Muhtaseb and Andy Trimlett for more information about the events around the Nakba - https://tubitv.com/movies/513674/1948-creation-catastrophe All That Remains: The Palestinian Villages Occupied and Depopulated by Israel in 1948 was a great resource in helping us understand the Nakba - https://www.goodreads.com/book/show/22236243-all-that-remains For our maps, we relied heavily on these organizations: Palestinian Academic Society for the Study of International Affairs, Institute for Middle Eastern Understanding, Palestine Remembered and Zochrot http://www.passia.org/maps/view/2 https://imeu.org/topic/category/maps https://www.palestineremembered.com/Maps/index.html https://www.zochrot.org/ This report by Ilan Pappe helped us understand how Zionist forces planned to destroy villages - https://www.palestine-studies.org/en/node/1650358 For our population breakdowns, we mainly used Australian National University’s Palestine Census reports archive - https://users.cecs.anu.edu.au/~bdm/yabber/yabber_census.html Make sure you never miss behind the scenes content in the Vox Video newsletter, sign up here: http://vox.com/video-newsletter Vox is an explanatory newsroom on a mission to help everyone understand our weird, wonderful, complicated world, so that we can all help shape it. Part of that mission is keeping our work free. You can help us do that by making a gift: http://www.vox.com/contribute-now Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on TikTok: http://tiktok.com/@voxdotcom Check out our articles: https://www.vox.com/ Listen to our podcasts: https://www.vox.com/podcasts
https://wn.com/How_Palestinians_Were_Expelled_From_Their_Homes
How did the Nakba happen? | Al Jazeera English
6:14

How did the Nakba happen? | Al Jazeera English

  • Order:
  • Duration: 6:14
  • Uploaded Date: 13 May 2018
  • views: 238569
70 years have passed since the Nakba, the “catastrophe” in Arabic, took place in Palestine in 1948. In which more than 750,000 Palestinians were forcefully displaced from their homes and pushed into refugee camps in East Jerusalem, the West Bank, the Gaza Strip and neighbouring countries. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/
https://wn.com/How_Did_The_Nakba_Happen_|_Al_Jazeera_English
Al-Nakba: The Palestinian catastrophe - Episode 1 | Featured Documentary
47:25

Al-Nakba: The Palestinian catastrophe - Episode 1 | Featured Documentary

  • Order:
  • Duration: 47:25
  • Uploaded Date: 08 May 2013
  • views: 1281879
Al-Nakba: The Palestinian catastrophe "The Nakba did not begin in 1948. Its origins lie over two centuries ago…." So begins this four-part series on the 'nakba', meaning the 'catastrophe', about the history of the Palestinian exodus that led to the first Arab-Israeli war in 1948, and the establishment of the state of Israel. This sweeping history starts back in 1799 with Napoleon's attempted advance into Palestine to check British expansion and his appeal to the Jews of the world to reclaim their land in league with France. The narrative moves through the 19th century and into the 20th century with the British Mandate in Palestine and comes right up to date in the 21st century and the ongoing 'nakba' on the ground. Arab, Israeli and Western intellectuals, historians and eye-witnesses provide the central narrative which is accompanied by archive material and documents, many only recently released for the first time. For Palestinians, 1948 marks the 'nakba' or the 'catastrophe', when hundreds of thousands were forced out of their homes. But for Israelis, the same year marks the creation of their own state. This series attempts to present an understanding of the events of the past that are still shaping the present. This story starts in 1799, outside the walls of Acre in Ottoman-controlled Palestine, when an army under Napoleon Bonaparte besieged the city. It was all part of a campaign to defeat the Ottomans and establish a French presence in the region. In search of allies, Napoleon issued a letter offering Palestine as a homeland to the Jews under French protection. He called on the Jews to ‘rise up’ against what he called their oppressors. Napoleon’s appeal was widely publicised. But he was ultimately defeated. In Acre today, the only memory of him is a statue atop a hill overlooking the city. Yet Napoleon's project for a Jewish homeland in the region under a colonial protectorate did not die, 40 years later, the plan was revived but by the British. Social Media links: Facebook: https://www.facebook.com/aljazeera Instagram: https://instagram.com/aljazeera/?ref=... Twitter: https://twitter.com/ajenglish Website: http://www.aljazeera.com/ google+: https://plus.google.com/+aljazeera/posts #Palestine #Israel #Nakba #Al-Nakba
https://wn.com/Al_Nakba_The_Palestinian_Catastrophe_Episode_1_|_Featured_Documentary
Why the Nakba is key to understanding Palestinian history #shorts
1:00

Why the Nakba is key to understanding Palestinian history #shorts

  • Order:
  • Duration: 1:00
  • Uploaded Date: 19 Oct 2023
  • views: 2414150
Subscribe to our channel and turn on notifications (🔔) so you don't miss any videos: http://goo.gl/0bsAjO Vox is on a mission is to help everyone, regardless of income or status, understand our complicated world so that we can all help shape it. Part of that mission is keeping our work free. You can help us do that by making a gift: http://www.vox.com/give-now Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on TikTok: http://tiktok.com/@voxdotcom Check out our articles: https://www.vox.com/ Listen to our podcasts: https://www.vox.com/podcasts
https://wn.com/Why_The_Nakba_Is_Key_To_Understanding_Palestinian_History_Shorts
The Palestinian Refugee Problem Explained (Nakba and the Arab narrative) sub: DE, ES, FR, IT
25:07

The Palestinian Refugee Problem Explained (Nakba and the Arab narrative) sub: DE, ES, FR, IT

  • Order:
  • Duration: 25:07
  • Uploaded Date: 03 Nov 2023
  • views: 630306
#nakba #vox Vox full video - https://www.youtube.com/watch?v=rGVgjS98OsU&t=4s&ab_channel=Vox Like my content? Want to support my work? Become a member and get early access to my videos as well as other perks! Support me on Ko - fi - https://ko-fi.com/travelingisrael 0:00 - Intro 1:00 - Deir Yassin intro 8:20 - The Partition plan 10: 55 - Plan D 14:10 - Deir Yassin 18:08 - The Battle of Haifa 20:35 - The Arab armies invaded Israel 21:09 - Palestinian refugees 23:00 - zoom out --- Follow me... ko-fi - https://ko-fi.com/travelingisrael Facebook - https://www.facebook.com/travelingisrael Instagram - https://www.instagram.com/travelingisrael/ Tiktok - https://www.tiktok.com/@travelingisrael1
https://wn.com/The_Palestinian_Refugee_Problem_Explained_(Nakba_And_The_Arab_Narrative)_Sub_De,_Es,_Fr,_It
How the Palestinian ‘Nakba’ relates to the Israel-Gaza war
4:55

How the Palestinian ‘Nakba’ relates to the Israel-Gaza war

  • Order:
  • Duration: 4:55
  • Uploaded Date: 04 Nov 2023
  • views: 9821
In Arabic, “Nakba” refers to the mass expulsion of Palestinians in 1948 during the creation of Israel. Experts warn that history could be repeating itself. Read more: https://wapo.st/3QvZf11. Subscribe to The Washington Post on YouTube: https://wapo.st/2QOdcqK Follow us: Twitter: https://twitter.com/washingtonpost Instagram: https://www.instagram.com/washingtonpost/ Facebook: https://www.facebook.com/washingtonpost/
https://wn.com/How_The_Palestinian_‘Nakba’_Relates_To_The_Israel_Gaza_War
The Arab-Israeli War of 1948 and Nakba explained
5:30

The Arab-Israeli War of 1948 and Nakba explained

  • Order:
  • Duration: 5:30
  • Uploaded Date: 14 May 2018
  • views: 538748
Following the establishment of the State of #Israel, the #1948 Arab-Israeli war broke out. As a result, 700,000 #Palestinians were forced out of their homeland to other Arab nations. The event is remembered by the Arab world as the Nakba or “catastrophe”. Palestine: Nakba Day 🇵🇸 👉 http://trt.world/1q46 Palestine-Israel Conflict 👉 http://trt.world/13k1
https://wn.com/The_Arab_Israeli_War_Of_1948_And_Nakba_Explained
Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V
8:47

Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V

  • Order:
  • Duration: 8:47
  • Uploaded Date: 10 Nov 2023
  • views: 7186
Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V Thousands of Palestinians fled northern Gaza on Wednesday, traveling miles on foot through the battered enclave in a growing exodus as Israel intensifies its ground and air campaign. Thousands of Palestinians fled northern Gaza on Wednesday, traveling miles on foot through the battered enclave in a growing exodus as Israel intensifies its ground and air campaign. Streams of people – women, children, the elderly and disabled – made their way down Salah Eddin Street, one of the two north-south highways in Gaza, along an evacuation corridor announced by the Israel Defense Forces #gaza #gazaunderattack #israelpalestineconflict #israelhamaswar #israelvspalestine #hamasattack #englishnews #cnnnews18 #news18
https://wn.com/Palestinians_Fear_New_Nakba_As_They_Flee_Besieged_Gaza_City_|_Israel_Palestine_Conflict_|_N18V
Israeli minister admits of ‘a Nakba of Gaza’
1:22

Israeli minister admits of ‘a Nakba of Gaza’

  • Order:
  • Duration: 1:22
  • Uploaded Date: 12 Nov 2023
  • views: 54677
In an interview with Channel 12 news, Israeli Minister of Agriculture and former Shin Bet chief Avi Dichter described the current displacement and persecution of Palestinians in Gaza as “the Nakba of Gaza 2023”. Dichter has been calling for over a decade to re-occupy Gaza. The Nakba, or “catastrophe” as it’s known in English, refers to the ethnic cleansing of some 750,000 Palestinians from their lands and homes in historic Palestine to make way for the creation of Israel in 1948. Subscribe to our channel: http://ow.ly/AVlW30n1OWH Subscribe to MEE Telegram channel to stay up to date: https://t.me/MiddleEastEye_TG Middle East Eye Website: https://middleeasteye.net Follow us on TikTok: https://www.tiktok.com/@middleeasteye Follow us on Instagram: https://instagram.com/MiddleEastEye Like us on Facebook: https://facebook.com/MiddleEastEye Follow us on Twitter: https://twitter.com/MiddleEastEye
https://wn.com/Israeli_Minister_Admits_Of_‘A_Nakba_Of_Gaza’
WHAT IS THE NAKBA?
5:17

WHAT IS THE NAKBA?

  • Order:
  • Duration: 5:17
  • Uploaded Date: 15 May 2022
  • views: 10742
Find out more about an-Nakba, also known as the Palestinian Catastrophe. #Nakba #Palestine #Israel #1948 #Islam #Muslims SUBSCRIBE ► https://rb.gy/fj9rd1 Watch your favourite Islam Channel shows on-demand: http://www.islamchannel.tv Stay up to date on our social media channels: ►TWITTER: https://twitter.com/islamchannel ►FACEBOOK: http://www.facebook.com/islamchanneluk ►INSTAGRAM: http://www.instagram.com/islamchanneltv
https://wn.com/What_Is_The_Nakba
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How Palestinians were expelled from their homes
    16:26
    How Palestinians were expelled from their homesremove from playlist
  • How did the Nakba happen? | Al Jazeera English
    6:14
    How did the Nakba happen? | Al Jazeera Englishremove from playlist
  • Al-Nakba: The Palestinian catastrophe - Episode 1 | Featured Documentary
    47:25
    Al-Nakba: The Palestinian catastrophe - Episode 1 | Featured Documentaryremove from playlist
  • Why the Nakba is key to understanding Palestinian history #shorts
    1:00
    Why the Nakba is key to understanding Palestinian history #shortsremove from playlist
  • The Palestinian Refugee Problem Explained (Nakba and the Arab narrative) sub: DE, ES, FR, IT
    25:07
    The Palestinian Refugee Problem Explained (Nakba and the Arab narrative) sub: DE, ES, FR, ITremove from playlist
  • How the Palestinian ‘Nakba’ relates to the Israel-Gaza war
    4:55
    How the Palestinian ‘Nakba’ relates to the Israel-Gaza warremove from playlist
  • The Arab-Israeli War of 1948 and Nakba explained
    5:30
    The Arab-Israeli War of 1948 and Nakba explainedremove from playlist
  • Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V
    8:47
    Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18Vremove from playlist
  • Israeli minister admits of ‘a Nakba of Gaza’
    1:22
    Israeli minister admits of ‘a Nakba of Gaza’remove from playlist
  • WHAT IS THE NAKBA?
    5:17
    WHAT IS THE NAKBA?remove from playlist
PLAYLIST TIME: 0:00 / 2:02:03

How Palestinians were expelled from their homes

The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO Around the time that Israelis celebrate Independence Day, Palestinians commemorate “The Nakba,” or “The Catastrophe.” The Nakba was a series of events, centered around 1948, that expelled hundreds of thousands Palestinians from their homeland and killed thousands. The Nakba isn’t the beginning of the story, but it’s a key part of Palestinian history — and the root of Israel’s creation. Prior to the Nakba, Palestine had a thriving population — largely made up of Arabs — that had lived and worked the land for centuries. But with the founding of Zionism, years of British meddling, and a British pledge to help create a Jewish state in Palestine — things began to change drastically. By 1947, with increasing tensions between Jewish settlers and Palestinian Arabs — the British left Palestine, and the UN stepped in with a plan to partition the land into two states. What followed was known as Plan Dalet: operations by Israeli paramilitary groups that violently uprooted Palestinians. An estimated 15,000 Palestinians were killed, more than 500 villages were decimated, and roughly 750,000 Palestinians displaced. Most who were expelled from their homes couldn’t return to historic Palestine. And today, millions of their descendants live in refugee camps in Gaza, the West Bank and surrounding countries. The history of the Nakba has been deliberately concealed and often ignored in western narratives around the creation of Israel. In this episode of Missing Chapter, we break down how the Nakba happened — and how it defined the future of Palestine. Sources: Check out the documentary “1948: Creation & Catastrophe” by Ahlam Muhtaseb and Andy Trimlett for more information about the events around the Nakba - https://tubitv.com/movies/513674/1948-creation-catastrophe All That Remains: The Palestinian Villages Occupied and Depopulated by Israel in 1948 was a great resource in helping us understand the Nakba - https://www.goodreads.com/book/show/22236243-all-that-remains For our maps, we relied heavily on these organizations: Palestinian Academic Society for the Study of International Affairs, Institute for Middle Eastern Understanding, Palestine Remembered and Zochrot http://www.passia.org/maps/view/2 https://imeu.org/topic/category/maps https://www.palestineremembered.com/Maps/index.html https://www.zochrot.org/ This report by Ilan Pappe helped us understand how Zionist forces planned to destroy villages - https://www.palestine-studies.org/en/node/1650358 For our population breakdowns, we mainly used Australian National University’s Palestine Census reports archive - https://users.cecs.anu.edu.au/~bdm/yabber/yabber_census.html Make sure you never miss behind the scenes content in the Vox Video newsletter, sign up here: http://vox.com/video-newsletter Vox is an explanatory newsroom on a mission to help everyone understand our weird, wonderful, complicated world, so that we can all help shape it. Part of that mission is keeping our work free. You can help us do that by making a gift: http://www.vox.com/contribute-now Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on TikTok: http://tiktok.com/@voxdotcom Check out our articles: https://www.vox.com/ Listen to our podcasts: https://www.vox.com/podcasts
16:26
How Palestinians were expelled from their homes
The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don...
published: 15 May 2023
Play in Full Screen
6:14
How did the Nakba happen? | Al Jazeera English
70 years have passed since the Nakba, the “catastrophe” in Arabic, took place in Palestine...
published: 13 May 2018
Play in Full Screen
47:25
Al-Nakba: The Palestinian catastrophe - Episode 1 | Featured Documentary
Al-Nakba: The Palestinian catastrophe "The Nakba did not begin in 1948. Its origins lie o...
published: 08 May 2013
Play in Full Screen
1:00
Why the Nakba is key to understanding Palestinian history #shorts
Subscribe to our channel and turn on notifications (🔔) so you don't miss any videos: http:...
published: 19 Oct 2023
Play in Full Screen
25:07
The Palestinian Refugee Problem Explained (Nakba and the Arab narrative) sub: DE, ES, FR, IT
#nakba #vox Vox full video - https://www.youtube.com/watch?v=rGVgjS98OsU&t=4s&ab_channel=...
published: 03 Nov 2023
Play in Full Screen
4:55
How the Palestinian ‘Nakba’ relates to the Israel-Gaza war
In Arabic, “Nakba” refers to the mass expulsion of Palestinians in 1948 during the creatio...
published: 04 Nov 2023
Play in Full Screen
5:30
The Arab-Israeli War of 1948 and Nakba explained
Following the establishment of the State of #Israel, the #1948 Arab-Israeli war broke out....
published: 14 May 2018
Play in Full Screen
8:47
Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | N18V
Palestinians Fear New Nakba As They Flee Besieged Gaza City | Israel Palestine Conflict | ...
published: 10 Nov 2023
Play in Full Screen
1:22
Israeli minister admits of ‘a Nakba of Gaza’
In an interview with Channel 12 news, Israeli Minister of Agriculture and former Shin Bet...
published: 12 Nov 2023
Play in Full Screen
5:17
WHAT IS THE NAKBA?
Find out more about an-Nakba, also known as the Palestinian Catastrophe. #Nakba #Palestin...
published: 15 May 2022
Play in Full Screen

1948 Palestinian exodus

The 1948 Palestinian exodus, also known as the Nakba (Arabic: النكبة, "al-Nakbah", literally "disaster", "catastrophe", or "cataclysm"), occurred when more than 700,000 Palestinian Arabs fled or were expelled from their homes, during the 1948 Palestine war. The term "nakba" also refers to the period of war itself and events affecting Palestinians from December 1947 to January 1949.

The precise number of refugees is a matter of dispute but around 80 percent of the Arab inhabitants of what became Israel (50 percent of the Arab total of Mandatory Palestine) left or were expelled from their homes.

The causes are also a subject of fundamental disagreement between Arabs and Israelis. Factors involved in the exodus include Jewish military advances, attacks against Arab villages and fears of another massacre by Zionist militias after the Deir Yassin massacre, which caused many to leave out of panic; Arab evacuation orders; expulsion orders by Israeli authorities; the voluntary self-removal of the wealthier classes, the collapse in Palestinian leadership, and an unwillingness to live under Jewish control.

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

Edit

‘We are the people of this land,’ Palestinians mark Nakba

Dawn 02 May 2025
About 300 Arab Israelis gathered on Thursday in the ruins of a village that Palestinians fled during the 1948 war that led to the creation of Israel, to commemorate what Palestinians call the “Nakba”, or catastrophe.
Edit

Massive Wildfires Rage Near Jerusalem as Israel Seeks International Help

Watan 30 Apr 2025
Israeli firefighting units are trying to prevent further spread ... Palestinians commemorate this day as the “Nakba”—the catastrophe of mass displacement and massacres committed by Zionist militias ....
Edit

Nakba march in northern Israel canceled after police ban Palestinian flags

Haaretz 29 Apr 2025
Organizers canceled the annual Nakba march, held since 1998 on ...
Edit

Iran’s diplomatic opening: A chance to win over the Arab Gulf

Blitz 16 Apr 2025
For decades, Iran’s relationship with its Arab Gulf neighbors has been defined by mutual suspicion, regional competition, and geopolitical rivalry ... Another Nakba could loom on the horizon, and the consequences would span generations ... ....
  • 1
×