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

Duleep Singh

Maharaja Duleep Singh, GCSI (6 September 1838 – 22 October 1893), also known as Dalip Singh and later in life nicknamed the Black Prince of Perthshire, was the last Maharaja of the Sikh Empire. He was Maharaja Ranjit Singh's youngest son, the only child of Maharani Jind Kaur.

After the assassinations of four of his predecessors, he came to power in September 1843, at the age of five. For a while his mother ruled, as Regent, but in December 1846, after the First Anglo-Sikh War, she was replaced by a British Resident and imprisoned. Mother and son were not allowed to meet again for thirteen and a half years. In April 1849 ten-year-old Duleep was put in the care of Dr John Login.

He was exiled to Britain at age 15 and was befriended and much admired by Queen Victoria, who is reported to have written of the Punjabi Maharaja: "Those eyes and those teeth are too beautiful". The Queen was godmother to several of his children.

In 1856 he tried to contact his mother, but his letter and emissaries were intercepted by the British in India, and didn't reach her. However, he persisted and, with help from Login, was allowed to meet her on 16 January 1861 at Spence's Hotel in Calcutta and return with her to the United Kingdom. During the last two years of her life, his mother told the Maharaja about his Sikh heritage and the Empire which once had been his to rule.

Dalip Singh

Dalip Singh may refer to:

  • Dalip Singh (athlete), first Sikh to represent India in the Olympics
  • Duleep Singh, Dalip Singh Sukerchakia, last Maharajah of Sikh Empire
  • Dalip Singh Rana, real name of actor and wrestler The Great Khali
  • Podcasts:

    • FULL MATCH - Big Show vs. The Great Khali: Backlash 2008

      Two of the largest Superstars in WWE history do battle in a supersized showdown: Courtesy of WWE Network. GET YOUR 1st MONTH of WWE NETWORK for FREE: http://wwe.yt/wwenetwork --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebellatwins UpUpDownDown: h...

      published: 22 Apr 2020
    • The Great Khali Most Beautiful Wife 😍 | Khali aka Dalip Singh Rana | WWE Fight

      The Great Khali Most Beautiful Wife 😍 | Khali Dalip Singh Rana | WWE Fight #TheGreatKhali#Wife #WWE #Khali_Dallip_singh_Rana_Wife ----------++++++++++++++++++++++----------- Reporter :AV Content Writer :AS Voice Over & Editor : AI Note: Full Credit to Owners. All Images, Picture, Music show in the video belongs to the respected owners. Disclaimer: This channel DOES NOT promotes or encourages any illegal activities and all content provided by this channel is meant for EDUCATIONAL PURPOSE only. Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for FAIR USE for purpose such a as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statues that might otherwise be infringing. Non- Prof...

      published: 01 Dec 2020
    • सिख राज के अंतिम महाराजा की कहानी - Maharaja Dalip Singh History in Hindi (The Black Prince)

      Maharaja Duleep Singh, also known as Sir Dalip Singh or Black Prince of Perthshire. He was the youngest son of Maharaja Ranjit Singh (Lion of Punjab). Duleep Singh was the last Maharaja of the Sikh Empire. He became Maharaja of Punjab in September 1843, at the age of five when his father died. After the Second Anglo Sikh war, he was separated from his mother and kept with Britishers. He met his mother after 13 long years, and then he understood that he was the Maharaja of the Sikh Empire. There is a movie released in 2017 named The Black Prince in which the struggle of Duleep Singh and his story is shown. कोहिनूर हीरा कैसे लगा अंग्रेजों के हाथ: https://youtu.be/WXWqzOdayOM महाराजा रणजीत सिंह की कहानी : https://youtu.be/21zcmVahk98 #theblackprince #maharajaduleepsingh #ajabgajabfact...

      published: 23 Nov 2020
    • The great khali (dalip Singh rana) funny video

      published: 21 Oct 2015
    • Conan O'Brien 'Adam Sandler & The Great Khali (part-2) 5/26/05

      Late Night with Conan O'Brien Adam Sandler & "The Great Khali" Dalip Singh Rana -- thanks for Conan Obsessed for sharing

      published: 24 Jul 2018
    • The Longest Yard- Turley alias Dalip Singh

      published: 04 Nov 2018
    • The Great Khali (Dalip Singh Rana) First Singles Match ! The Great Khali Vs Miyaki Full Match!

      In this video, Dalip Singh Rana aka the Great Khali faces miyaki in a singles match, it was the debut match of the great khali as a singles match, dalip Singh rana dominated his opponent in the whole match, finally won the match by hitting a choke slam to miyaki, as a result of which dalip Singh Rana become fan favorite giant wrestler at that time from India. . #wwe #dalipsinghrana #thegreatkhali

      published: 03 Oct 2020
    • The Great Khali destroys Legends: WWE Playlist

      Standing more than 7 feet tall, The Great Khali is one of the most imposing Superstars in WWE history. See The Punjabi Nightmare destroy Legends like John Cena, The Undertaker, Ric Flair and more. GET YOUR 1st MONTH of WWE NETWORK for FREE: http://wwe.yt/wwenetwork --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebe...

      published: 27 Aug 2019
    developed with YouTube
    FULL MATCH - Big Show vs. The Great Khali: Backlash 2008
    12:36

    FULL MATCH - Big Show vs. The Great Khali: Backlash 2008

    • Order:
    • Duration: 12:36
    • Uploaded Date: 22 Apr 2020
    • views: 95750162
    Two of the largest Superstars in WWE history do battle in a supersized showdown: Courtesy of WWE Network. GET YOUR 1st MONTH of WWE NETWORK for FREE: http://wwe.yt/wwenetwork --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebellatwins UpUpDownDown: https://www.youtube.com/upupdowndown WWEMusic: https://www.youtube.com/wwemusic Total Divas: https://www.youtube.com/wwetotaldivas ------------------------------------ WWE on Social Media ------------------------------------ Twitter: https://twitter.com/wwe Facebook: https://www.facebook.com/wwe Instagram: https://www.instagram.com/wwe/ Reddit: https://www.reddit.com/user/RealWWE Giphy: https://giphy.com/wwe ------------------------------------ WWE Podcasts ------------------------------------ After the Bell with Corey Graves: http://bit.ly/afterthebellpodcast The New Day: Feel the Power: https://link.chtbl.com/7Fp6uOqk
    https://wn.com/Full_Match_Big_Show_Vs._The_Great_Khali_Backlash_2008
    The Great Khali Most Beautiful Wife 😍 | Khali aka Dalip Singh Rana | WWE Fight
    2:37

    The Great Khali Most Beautiful Wife 😍 | Khali aka Dalip Singh Rana | WWE Fight

    • Order:
    • Duration: 2:37
    • Uploaded Date: 01 Dec 2020
    • views: 4541261
    The Great Khali Most Beautiful Wife 😍 | Khali Dalip Singh Rana | WWE Fight #TheGreatKhali#Wife #WWE #Khali_Dallip_singh_Rana_Wife ----------++++++++++++++++++++++----------- Reporter :AV Content Writer :AS Voice Over & Editor : AI Note: Full Credit to Owners. All Images, Picture, Music show in the video belongs to the respected owners. Disclaimer: This channel DOES NOT promotes or encourages any illegal activities and all content provided by this channel is meant for EDUCATIONAL PURPOSE only. Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for FAIR USE for purpose such a as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statues that might otherwise be infringing. Non- Profit, educational or personal use tips the balance in favor of FAIR USE. Please like share and subscribe my channel for watching latest videos everyday. ++++++++++++++++++++++++++++++++++ Thanks For Watching #Celebritysansar
    https://wn.com/The_Great_Khali_Most_Beautiful_Wife_😍_|_Khali_Aka_Dalip_Singh_Rana_|_Wwe_Fight
    सिख राज के अंतिम महाराजा की कहानी - Maharaja Dalip Singh History in Hindi (The Black Prince)
    8:48

    सिख राज के अंतिम महाराजा की कहानी - Maharaja Dalip Singh History in Hindi (The Black Prince)

    • Order:
    • Duration: 8:48
    • Uploaded Date: 23 Nov 2020
    • views: 173913
    Maharaja Duleep Singh, also known as Sir Dalip Singh or Black Prince of Perthshire. He was the youngest son of Maharaja Ranjit Singh (Lion of Punjab). Duleep Singh was the last Maharaja of the Sikh Empire. He became Maharaja of Punjab in September 1843, at the age of five when his father died. After the Second Anglo Sikh war, he was separated from his mother and kept with Britishers. He met his mother after 13 long years, and then he understood that he was the Maharaja of the Sikh Empire. There is a movie released in 2017 named The Black Prince in which the struggle of Duleep Singh and his story is shown. कोहिनूर हीरा कैसे लगा अंग्रेजों के हाथ: https://youtu.be/WXWqzOdayOM महाराजा रणजीत सिंह की कहानी : https://youtu.be/21zcmVahk98 #theblackprince #maharajaduleepsingh #ajabgajabfacts Powered By अजब गजब facts Please Like, Share and Subscribe our Channel so that I could bring more awesome videos to entertain you. Thank You
    https://wn.com/सिख_राज_के_अंतिम_महाराजा_की_कहानी_Maharaja_Dalip_Singh_History_In_Hindi_(The_Black_Prince)
    The great khali (dalip Singh rana) funny video
    1:19

    The great khali (dalip Singh rana) funny video

    • Order:
    • Duration: 1:19
    • Uploaded Date: 21 Oct 2015
    • views: 50131
    https://wn.com/The_Great_Khali_(Dalip_Singh_Rana)_Funny_Video
    Conan O'Brien 'Adam Sandler & The Great Khali (part-2) 5/26/05
    7:37

    Conan O'Brien 'Adam Sandler & The Great Khali (part-2) 5/26/05

    • Order:
    • Duration: 7:37
    • Uploaded Date: 24 Jul 2018
    • views: 6211455
    Late Night with Conan O'Brien Adam Sandler & "The Great Khali" Dalip Singh Rana -- thanks for Conan Obsessed for sharing
    https://wn.com/Conan_O'Brien_'Adam_Sandler_The_Great_Khali_(Part_2)_5_26_05
    The Longest Yard- Turley alias Dalip Singh
    4:16

    The Longest Yard- Turley alias Dalip Singh

    • Order:
    • Duration: 4:16
    • Uploaded Date: 04 Nov 2018
    • views: 1008100
    https://wn.com/The_Longest_Yard_Turley_Alias_Dalip_Singh
    The Great Khali (Dalip Singh Rana) First Singles Match ! The Great Khali Vs Miyaki Full Match!
    8:02

    The Great Khali (Dalip Singh Rana) First Singles Match ! The Great Khali Vs Miyaki Full Match!

    • Order:
    • Duration: 8:02
    • Uploaded Date: 03 Oct 2020
    • views: 96071
    In this video, Dalip Singh Rana aka the Great Khali faces miyaki in a singles match, it was the debut match of the great khali as a singles match, dalip Singh rana dominated his opponent in the whole match, finally won the match by hitting a choke slam to miyaki, as a result of which dalip Singh Rana become fan favorite giant wrestler at that time from India. . #wwe #dalipsinghrana #thegreatkhali
    https://wn.com/The_Great_Khali_(Dalip_Singh_Rana)_First_Singles_Match_The_Great_Khali_Vs_Miyaki_Full_Match
    The Great Khali destroys Legends: WWE Playlist
    18:44

    The Great Khali destroys Legends: WWE Playlist

    • Order:
    • Duration: 18:44
    • Uploaded Date: 27 Aug 2019
    • views: 118414620
    Standing more than 7 feet tall, The Great Khali is one of the most imposing Superstars in WWE history. See The Punjabi Nightmare destroy Legends like John Cena, The Undertaker, Ric Flair and more. GET YOUR 1st MONTH of WWE NETWORK for FREE: http://wwe.yt/wwenetwork --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebellatwins UpUpDownDown: https://www.youtube.com/upupdowndown WWEMusic: https://www.youtube.com/wwemusic Total Divas: https://www.youtube.com/wwetotaldivas ------------------------------------ WWE on Social Media ------------------------------------ Twitter: https://twitter.com/wwe Facebook: https://www.facebook.com/wwe Instagram: https://www.instagram.com/wwe/ Reddit: https://www.reddit.com/user/RealWWE Giphy: https://giphy.com/wwe
    https://wn.com/The_Great_Khali_Destroys_Legends_Wwe_Playlist
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    FULL MATCH - Big Show vs. The Great Khali: Backlash 2008

    Two of the largest Superstars in WWE history do battle in a supersized showdown: Courtesy of WWE Network. GET YOUR 1st MONTH of WWE NETWORK for FREE: http://wwe.yt/wwenetwork --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebellatwins UpUpDownDown: https://www.youtube.com/upupdowndown WWEMusic: https://www.youtube.com/wwemusic Total Divas: https://www.youtube.com/wwetotaldivas ------------------------------------ WWE on Social Media ------------------------------------ Twitter: https://twitter.com/wwe Facebook: https://www.facebook.com/wwe Instagram: https://www.instagram.com/wwe/ Reddit: https://www.reddit.com/user/RealWWE Giphy: https://giphy.com/wwe ------------------------------------ WWE Podcasts ------------------------------------ After the Bell with Corey Graves: http://bit.ly/afterthebellpodcast The New Day: Feel the Power: https://link.chtbl.com/7Fp6uOqk
    12:36
    FULL MATCH - Big Show vs. The Great Khali: Backlash 2008
    Two of the largest Superstars in WWE history do battle in a supersized showdown: Courtesy ...
    published: 22 Apr 2020
    Play in Full Screen
    2:37
    The Great Khali Most Beautiful Wife 😍 | Khali aka Dalip Singh Rana | WWE Fight
    The Great Khali Most Beautiful Wife 😍 | Khali Dalip Singh Rana | WWE Fight #TheGreatKhal...
    published: 01 Dec 2020
    Play in Full Screen
    8:48
    सिख राज के अंतिम महाराजा की कहानी - Maharaja Dalip Singh History in Hindi (The Black Prince)
    Maharaja Duleep Singh, also known as Sir Dalip Singh or Black Prince of Perthshire. He was...
    published: 23 Nov 2020
    Play in Full Screen
    1:19
    The great khali (dalip Singh rana) funny video
    published: 21 Oct 2015
    Play in Full Screen
    7:37
    Conan O'Brien 'Adam Sandler & The Great Khali (part-2) 5/26/05
    Late Night with Conan O'Brien Adam Sandler & "The Great Khali" Dalip Singh Rana -- thanks ...
    published: 24 Jul 2018
    Play in Full Screen
    4:16
    The Longest Yard- Turley alias Dalip Singh
    published: 04 Nov 2018
    Play in Full Screen
    8:02
    The Great Khali (Dalip Singh Rana) First Singles Match ! The Great Khali Vs Miyaki Full Match!
    In this video, Dalip Singh Rana aka the Great Khali faces miyaki in a singles match, it wa...
    published: 03 Oct 2020
    Play in Full Screen
    18:44
    The Great Khali destroys Legends: WWE Playlist
    Standing more than 7 feet tall, The Great Khali is one of the most imposing Superstars in ...
    published: 27 Aug 2019
    Play in Full Screen

    Duleep Singh

    Maharaja Duleep Singh, GCSI (6 September 1838 – 22 October 1893), also known as Dalip Singh and later in life nicknamed the Black Prince of Perthshire, was the last Maharaja of the Sikh Empire. He was Maharaja Ranjit Singh's youngest son, the only child of Maharani Jind Kaur.

    After the assassinations of four of his predecessors, he came to power in September 1843, at the age of five. For a while his mother ruled, as Regent, but in December 1846, after the First Anglo-Sikh War, she was replaced by a British Resident and imprisoned. Mother and son were not allowed to meet again for thirteen and a half years. In April 1849 ten-year-old Duleep was put in the care of Dr John Login.

    He was exiled to Britain at age 15 and was befriended and much admired by Queen Victoria, who is reported to have written of the Punjabi Maharaja: "Those eyes and those teeth are too beautiful". The Queen was godmother to several of his children.

    In 1856 he tried to contact his mother, but his letter and emissaries were intercepted by the British in India, and didn't reach her. However, he persisted and, with help from Login, was allowed to meet her on 16 January 1861 at Spence's Hotel in Calcutta and return with her to the United Kingdom. During the last two years of her life, his mother told the Maharaja about his Sikh heritage and the Empire which once had been his to rule.

    '); } 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: maharaja duleep singh

    Edit

    Abhivyakti 4.0 Literature Fest: Don’t distort history in garb of creativity, says ex-ambassador Navtej S Sarna

    Hindustan Times 11 Nov 2024
    Talking about Maharaja Duleep Singh, the youngest son of Maharaja Ranjit Singh and Maharani Zinda, the central theme of his novel- “The Exile”, Sarna said, “Maharaja Duleep Singh’s life was quite tragic.
    Edit

    Viral Video: Indian travel vlogger visits Lahore, Pakistan; netizens react, ‘Looks cleaner than Delhi and Mumbai’

    Live Mint 29 Oct 2024
    “Tastes the same,” says Chaudhary after eating it.Next, they visit the grave of Bamba Sutherland, the daughter of Maharaja Duleep Singh and granddaughter of Maharaja Ranjit Singhthe.
    Edit

    The real treasures of Egypt are a long way from Cairo

    Arab News 24 Oct 2024
    Either way, if we are to believe the few lucky Egyptians who have so far forked out $2 for a ticket, the wait has been worth it ... Ross Anderson ... wait ... Ross Anderson ... Eventually, it came into the possession of Duleep Singh, the maharaja of the Sikh Empire.
    Edit

    Just Stop Oil protesters likened to the women

    The Daily Mail 16 Aug 2024
    The daughter of a deposed Indian Maharaja whose kingdom was annexed by the British before he was exiled to England, Sophia Duleep Singh was Queen Victoria's goddaughter as well as being a committed suffragette.
    Edit

    London exhibition explores life, legacy of Maharaja Ranjit Singh

    Hindustan Times 11 Apr 2024
    ... with foreign powers; and the legacy section examines the aftermath of the collapse of the Sikh kingdom, with his son and heir Maharaja Duleep Singh’s bust marking the final object of the display.
    Edit

    Historian says Sadiq Khan

    The Daily Mail 15 Feb 2024
    The daughter of a deposed Indian Maharaja whose kingdom was annexed by the British before he was exiled to England, Sophia Duleep Singh was Queen Victoria's goddaughter as well as being a committed suffragette.
    Edit

    UK’s Thetford museum gets ₹2-cr grant to mark Maharaja Duleep Singh’s legacy

    Hindustan Times 29 Jan 2024
    The museum was founded in 1924 by Prince Frederick Duleep Singh, the son of Maharaja Duleep Singh ... Maharaja Duleep Singh was the youngest son of Maharaja Ranjit Singh, who founded the Sikh empire in the Punjab in 1799.
    Edit

    UK museum gets 200k pounds grant to tell stories of last Sikh Maharaja

    Suryaa 28 Jan 2024
    Prince Frederick Duleep Singh, the son of Maharaja Duleep Singh, gifted the Ancient House Museum to the people of Thetford town in the south of Norfolk, in 1924 ... The youngest son of Maharaja Ranjit ...
    Edit

    Sikh antiquarian puts on display rare Hindu manuscripts, coins at expo

    Indian Express 21 Jan 2024
    Talking to The Indian Express, Narinder Pal Singh said, \u201cThe main attraction is a 1848 AD Nanakshahi coin during the rule of Maharaja Duleep Singh (last Sikh ruler of Punjab) on which 'Guru ...
    Edit

    Bollywood: AR Rahman’s daughter Khatija to make her international debut as music composer in ‘Lioness’

    Gulf News 23 Nov 2023
    The first story revolves around the suffragette (women’s protest for the right to vote) by Princess Sophia Duleep Singh, the granddaughter of the legendary king Maharaja Ranjit Singh and the ...
    Edit

    He Was An Inspiration To Bhagat Singh | Director Kavi Raz: Eponymous biopic on Ghadar Movement hero Sarabha set for November 3 release

    Indian Express 30 Oct 2023
    So, he was always in my mind,\u201d says Raz, a native of Dhugga village of Hoshiarpur, who had earlier directed the film \u201cThe Black Prince\u201d on the life of Punjab\u2019s last ruler Maharaja Duleep Singh.
    Edit

    Integral part of Canadian society, Sikhs migrated to the country in six waves

    Hindustan Times 26 Sep 2023
    As the first Sikh man in Canada, prince Victor Duleep Singh, the grandson of Maharaja Ranjit Singh, was posted from December 1888 to February 1890, in Halifax, Nova Scotia, as an aide to Sir John ...
    Edit

    10 History Podcasts That Will Change the Way You See the World

    Vogue 26 Sep 2023
    for instance, the one which tells the extraordinary story of Princess Sophia Duleep Singh, born to a Sikh maharaja father and a German-Ethiopian mother, who was a debutante, suffragette, and ...
    Edit

    Tower of London's Crown Jewels: colonial diamonds overshadow reopened exhibition's most interesting objects

    The Conversation 31 Jul 2023
    In 1849, the East India Company took the diamond from the treasury of the defeated ten-year-old king maharaja Duleep Singh ... Singh to surrender it to Queen Victoria, along with control of the Punjab”.
    Edit

    Film on Ludhiana heritage monument related to Maharaja Duleep Singh screened in UK

    Indian Express 28 Jul 2023
    The heritage film \u201cLast Evening of the Last Sikh Emperor on the Land of Punjab\u201d, depicting \u201cBassian Kothi\u201d, a 200-year-old monument in Ludhiana related to Maharaja Duleep Singh, was screened in the UK recently.

    Most Viewed

    ×