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

Mir Jehandad Khan

Mir Jehandad Khan (died 1868) was a tribal chief of the Hazara region of the North-West Frontier of British India and Nawab of Amb.

Life

Jehandad Khan was the son of Mir Painda Khan, a fighter against the Sikh Empire. He became the ruler of Amb on the death of his father in 1844.

It was said, "Of all the tribal chiefs of Hazara, the most powerful [was] said to be Jehandad Khan of the Tanoli." His territories lay on both banks of the Indus, and Jehandad Khan was highly respected among his peoples as the son of Painda Khan. In the words of Major J. Abbott

When Sikh power was on the decline in 1845, Jehandad Khan blockaded the garrisons of no less than 22 Sikh posts in Upper Tanawal; and when they surrendered, he spared their lives, as the servants of a fallen Empire. Colonel H. B. Edwards later commented on this "The act, however, stood him afterwards in good stead; for, when Hazara was assigned to Maharaja Golab Singh, that politic ruler rewarded Jehandad Khan's humanity with the jagir of Koolge and Badnuck in Lower Tannowul."

Podcasts:

  • Jahandad Khan Grabs 3 Brilliant Wickets | Karachi W vs Rawalpindi | National T20 2023-24 |PCB| M1W1A

    Jahandad Khan Grabs 3 Brilliant Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 2023-24 | PCB | M1W1A #AajaMaidanMein | #NationalT20 | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit....

    published: 08 Dec 2023
  • Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 | PCB | M1W1L

    Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 2023-24 | PCB #NationalT20 | #KHIWvvRWP | #AajaMaidanMein Buy official Pakistan Cricket merchandise: https://shop.pcb.com.pk/ Welcome to the official page of Pakistan Cricket Board. Get all your Pakistan Cricket updates here! You can access exclusive player interviews, match highlights, practice sessions, press conferences, coaching videos and other beyond-the-boundary content. Subscribe to our YouTube channel: https://bit.ly/SubscribePakistanCricket Like us on Facebook: https://www.facebook.com/PakistanCricketBoard Visit our website: https://www.pcb.com.pk/

    published: 08 Dec 2023
  • Jahandad Khan Smashing 50 vs State Bank in Naya Nazimabad Ramadan Cup (52 RUNS OFF 35 BALLS) 2x4 4x6

    Watch and Enjoy the highlights of smashing fifty by hard hitting batsman from Faisalabad Jahandad Khan in Naya Nazimabad Ramadan Cup 2018. He was playing for Dollar East against State Bank of Pakistan. He scored 52 runs off just 35 balls and he hit 4 sixes and 2 fours during his innings.

    published: 04 May 2020
  • Jahandad Khan || Fastest Fifty || Miusam Ramzan Cup Rawalpindi || 53 Runs 17 Balls || @crichub360

    Jahandad Khan Scored Fastest Fifty Of Miusam Ramzan Cup Rawalpindi From Stars ICCA Against Fata Fighters 10 April 2023 at Miusam Cricket Ground Rawalpindi

    published: 24 Apr 2023
  • Upcoming T20 Specialist for Pakistan Jahandad Khan Sixes

    Stars ICCA Rawalpindi

    published: 03 Jan 2020
  • Jahandad Khan(grey Shirt) Vs sarim Ali(red) 3rd fight between frndz..4august

    Zubair wushu academy

    published: 03 Aug 2023
  • Pashto movies famous Actor JAHANDAD KHAN health problems

    Pashto filmon ke - Ada kar aaj kis HAL mein hai yah janne ke liye video lazmi Deke es se aapko bahot kuchh sikhane ko milega aur aap dekhne walon mein se koi bhi in ki madad karna chahta hai tu in se direct contact kar sakte hain niche diye huye number per 0331 9383867

    published: 26 Feb 2022
  • Jahandad Khan Vs Sarim Ali fight 5october #viral #video #trending #viralvideo

    Zubair wushu academy | Great fight #jahandadkhantanoli #boxing #viral #vlog #video #viralvideo #short #fitness #kidboxing #kid #boxing #boxingtraining #mma #kickboxing #motivation #mixedmartialarts #wrestling #southasian #wushu #cutebaby #karate #pakistan #fight #ufc #taekwondo #judo #martialarts #trending #trendingshorts #shorts #shortvideo

    published: 07 Oct 2023
  • ASHNA LAWANG DANA YAM By Sara Khan & Jahandad Khan | Pashto Song | Full HD 1080p | AK Official

    Pashto Films Pashto full movie 2019 Pashto Film Pashto film 2019 Pashto HD film Pashto HD film 2019 Pashto Movie Pashto Movies Pashto Movie 2019 Pashto Tele Film Pashto Drama Pashto New Tele Film 2019 Pashto New Drama 2019 Pashto New HD Tele Film 2019 Pashto new Song 2018 Pashto Best Song 2018 Rabab mangi Tang Takor Pashto Funny Video 2018 Nazia Iqbal new Song 2018 Gul Panra New Song 2018 Rahim Shah New Song 2018 Shahsawar New Song 2018 Nadia New Dance 2018 Pashto New Drama 2018 Karan Khan New Tapey Shahid Khan song 2018 Shahid Khan Pashto film 2018 Shahid Film's Production Pashto star Shahid Khan Shahid Khan Pashto HD film Shahid Khan Pashto HD film 2018 Jahangir Khan Pashto HD film 2018 Jahangir Khan Pashto new tele film 2018 Pashto New HD tele film 2018 Pashto new HD song 2018 Pashto H...

    published: 22 Dec 2019
  • Jahandad khan Lahore

    0300000000

    published: 18 Jul 2017
developed with YouTube
Jahandad Khan Grabs 3 Brilliant Wickets | Karachi W vs Rawalpindi | National T20 2023-24 |PCB| M1W1A
3:35

Jahandad Khan Grabs 3 Brilliant Wickets | Karachi W vs Rawalpindi | National T20 2023-24 |PCB| M1W1A

  • Order:
  • Duration: 3:35
  • Uploaded Date: 08 Dec 2023
  • views: 3887
Jahandad Khan Grabs 3 Brilliant Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 2023-24 | PCB | M1W1A #AajaMaidanMein | #NationalT20 | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
https://wn.com/Jahandad_Khan_Grabs_3_Brilliant_Wickets_|_Karachi_W_Vs_Rawalpindi_|_National_T20_2023_24_|Pcb|_M1W1A
Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 | PCB | M1W1L
3:05

Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 | PCB | M1W1L

  • Order:
  • Duration: 3:05
  • Uploaded Date: 08 Dec 2023
  • views: 2182
Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 2023-24 | PCB #NationalT20 | #KHIWvvRWP | #AajaMaidanMein Buy official Pakistan Cricket merchandise: https://shop.pcb.com.pk/ Welcome to the official page of Pakistan Cricket Board. Get all your Pakistan Cricket updates here! You can access exclusive player interviews, match highlights, practice sessions, press conferences, coaching videos and other beyond-the-boundary content. Subscribe to our YouTube channel: https://bit.ly/SubscribePakistanCricket Like us on Facebook: https://www.facebook.com/PakistanCricketBoard Visit our website: https://www.pcb.com.pk/
https://wn.com/Jahandad_Khan_3_Wickets_|_Karachi_Whites_Vs_Rawalpindi_|_Match_60_|_National_T20_|_Pcb_|_M1W1L
Jahandad Khan Smashing 50 vs State Bank in Naya Nazimabad Ramadan Cup (52 RUNS OFF 35 BALLS) 2x4 4x6
1:27

Jahandad Khan Smashing 50 vs State Bank in Naya Nazimabad Ramadan Cup (52 RUNS OFF 35 BALLS) 2x4 4x6

  • Order:
  • Duration: 1:27
  • Uploaded Date: 04 May 2020
  • views: 1643
Watch and Enjoy the highlights of smashing fifty by hard hitting batsman from Faisalabad Jahandad Khan in Naya Nazimabad Ramadan Cup 2018. He was playing for Dollar East against State Bank of Pakistan. He scored 52 runs off just 35 balls and he hit 4 sixes and 2 fours during his innings.
https://wn.com/Jahandad_Khan_Smashing_50_Vs_State_Bank_In_Naya_Nazimabad_Ramadan_Cup_(52_Runs_Off_35_Balls)_2X4_4X6
Jahandad Khan || Fastest Fifty || Miusam Ramzan Cup Rawalpindi || 53 Runs 17 Balls || @crichub360
4:22

Jahandad Khan || Fastest Fifty || Miusam Ramzan Cup Rawalpindi || 53 Runs 17 Balls || @crichub360

  • Order:
  • Duration: 4:22
  • Uploaded Date: 24 Apr 2023
  • views: 1704
Jahandad Khan Scored Fastest Fifty Of Miusam Ramzan Cup Rawalpindi From Stars ICCA Against Fata Fighters 10 April 2023 at Miusam Cricket Ground Rawalpindi
https://wn.com/Jahandad_Khan_||_Fastest_Fifty_||_Miusam_Ramzan_Cup_Rawalpindi_||_53_Runs_17_Balls_||_Crichub360
Upcoming T20 Specialist for Pakistan Jahandad Khan Sixes
2:31

Upcoming T20 Specialist for Pakistan Jahandad Khan Sixes

  • Order:
  • Duration: 2:31
  • Uploaded Date: 03 Jan 2020
  • views: 738
Stars ICCA Rawalpindi
https://wn.com/Upcoming_T20_Specialist_For_Pakistan_Jahandad_Khan_Sixes
Jahandad Khan(grey Shirt) Vs sarim Ali(red) 3rd fight between frndz..4august
0:56

Jahandad Khan(grey Shirt) Vs sarim Ali(red) 3rd fight between frndz..4august

  • Order:
  • Duration: 0:56
  • Uploaded Date: 03 Aug 2023
  • views: 108
Zubair wushu academy
https://wn.com/Jahandad_Khan(Grey_Shirt)_Vs_Sarim_Ali(Red)_3Rd_Fight_Between_Frndz..4August
Pashto movies famous Actor JAHANDAD KHAN health problems
14:44

Pashto movies famous Actor JAHANDAD KHAN health problems

  • Order:
  • Duration: 14:44
  • Uploaded Date: 26 Feb 2022
  • views: 719
Pashto filmon ke - Ada kar aaj kis HAL mein hai yah janne ke liye video lazmi Deke es se aapko bahot kuchh sikhane ko milega aur aap dekhne walon mein se koi bhi in ki madad karna chahta hai tu in se direct contact kar sakte hain niche diye huye number per 0331 9383867
https://wn.com/Pashto_Movies_Famous_Actor_Jahandad_Khan_Health_Problems
Jahandad Khan Vs Sarim Ali fight 5october #viral #video #trending #viralvideo
1:26

Jahandad Khan Vs Sarim Ali fight 5october #viral #video #trending #viralvideo

  • Order:
  • Duration: 1:26
  • Uploaded Date: 07 Oct 2023
  • views: 81
Zubair wushu academy | Great fight #jahandadkhantanoli #boxing #viral #vlog #video #viralvideo #short #fitness #kidboxing #kid #boxing #boxingtraining #mma #kickboxing #motivation #mixedmartialarts #wrestling #southasian #wushu #cutebaby #karate #pakistan #fight #ufc #taekwondo #judo #martialarts #trending #trendingshorts #shorts #shortvideo
https://wn.com/Jahandad_Khan_Vs_Sarim_Ali_Fight_5October_Viral_Video_Trending_Viralvideo
ASHNA LAWANG DANA YAM By Sara Khan & Jahandad Khan | Pashto Song | Full HD 1080p | AK Official
4:05

ASHNA LAWANG DANA YAM By Sara Khan & Jahandad Khan | Pashto Song | Full HD 1080p | AK Official

  • Order:
  • Duration: 4:05
  • Uploaded Date: 22 Dec 2019
  • views: 29872
Pashto Films Pashto full movie 2019 Pashto Film Pashto film 2019 Pashto HD film Pashto HD film 2019 Pashto Movie Pashto Movies Pashto Movie 2019 Pashto Tele Film Pashto Drama Pashto New Tele Film 2019 Pashto New Drama 2019 Pashto New HD Tele Film 2019 Pashto new Song 2018 Pashto Best Song 2018 Rabab mangi Tang Takor Pashto Funny Video 2018 Nazia Iqbal new Song 2018 Gul Panra New Song 2018 Rahim Shah New Song 2018 Shahsawar New Song 2018 Nadia New Dance 2018 Pashto New Drama 2018 Karan Khan New Tapey Shahid Khan song 2018 Shahid Khan Pashto film 2018 Shahid Film's Production Pashto star Shahid Khan Shahid Khan Pashto HD film Shahid Khan Pashto HD film 2018 Jahangir Khan Pashto HD film 2018 Jahangir Khan Pashto new tele film 2018 Pashto New HD tele film 2018 Pashto new HD song 2018 Pashto HD videos Pashto local videos Pashto local Songs Pashto Drama Afghani Songs
https://wn.com/Ashna_Lawang_Dana_Yam_By_Sara_Khan_Jahandad_Khan_|_Pashto_Song_|_Full_Hd_1080P_|_Ak_Official
Jahandad khan Lahore
1:08

Jahandad khan Lahore

  • Order:
  • Duration: 1:08
  • Uploaded Date: 18 Jul 2017
  • views: 65
0300000000
https://wn.com/Jahandad_Khan_Lahore
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Jahandad Khan Grabs 3 Brilliant Wickets | Karachi W vs Rawalpindi | National T20 2023-24 |PCB| M1W1A

Jahandad Khan Grabs 3 Brilliant Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 2023-24 | PCB | M1W1A #AajaMaidanMein | #NationalT20 | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
3:35
Jahandad Khan Grabs 3 Brilliant Wickets | Karachi W vs Rawalpindi | National T20 2023-24 |PCB| M1W1A
Jahandad Khan Grabs 3 Brilliant Wickets | Karachi Whites vs Rawalpindi | Match 60 | Nation...
published: 08 Dec 2023
Play in Full Screen
3:05
Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 | PCB | M1W1L
Jahandad Khan 3 Wickets | Karachi Whites vs Rawalpindi | Match 60 | National T20 2023-24 |...
published: 08 Dec 2023
Play in Full Screen
1:27
Jahandad Khan Smashing 50 vs State Bank in Naya Nazimabad Ramadan Cup (52 RUNS OFF 35 BALLS) 2x4 4x6
Watch and Enjoy the highlights of smashing fifty by hard hitting batsman from Faisalabad J...
published: 04 May 2020
Play in Full Screen
4:22
Jahandad Khan || Fastest Fifty || Miusam Ramzan Cup Rawalpindi || 53 Runs 17 Balls || @crichub360
Jahandad Khan Scored Fastest Fifty Of Miusam Ramzan Cup Rawalpindi From Stars ICCA Against...
published: 24 Apr 2023
Play in Full Screen
2:31
Upcoming T20 Specialist for Pakistan Jahandad Khan Sixes
Stars ICCA Rawalpindi
published: 03 Jan 2020
Play in Full Screen
0:56
Jahandad Khan(grey Shirt) Vs sarim Ali(red) 3rd fight between frndz..4august
Zubair wushu academy
published: 03 Aug 2023
Play in Full Screen
14:44
Pashto movies famous Actor JAHANDAD KHAN health problems
Pashto filmon ke - Ada kar aaj kis HAL mein hai yah janne ke liye video lazmi Deke es se a...
published: 26 Feb 2022
Play in Full Screen
1:26
Jahandad Khan Vs Sarim Ali fight 5october #viral #video #trending #viralvideo
Zubair wushu academy | Great fight #jahandadkhantanoli #boxing #viral #vlog #video #viral...
published: 07 Oct 2023
Play in Full Screen
4:05
ASHNA LAWANG DANA YAM By Sara Khan & Jahandad Khan | Pashto Song | Full HD 1080p | AK Official
Pashto Films Pashto full movie 2019 Pashto Film Pashto film 2019 Pashto HD film Pashto HD...
published: 22 Dec 2019
Play in Full Screen
1:08
Jahandad khan Lahore
0300000000
published: 18 Jul 2017
Play in Full Screen

Mir Jehandad Khan

Mir Jehandad Khan (died 1868) was a tribal chief of the Hazara region of the North-West Frontier of British India and Nawab of Amb.

Life

Jehandad Khan was the son of Mir Painda Khan, a fighter against the Sikh Empire. He became the ruler of Amb on the death of his father in 1844.

It was said, "Of all the tribal chiefs of Hazara, the most powerful [was] said to be Jehandad Khan of the Tanoli." His territories lay on both banks of the Indus, and Jehandad Khan was highly respected among his peoples as the son of Painda Khan. In the words of Major J. Abbott

When Sikh power was on the decline in 1845, Jehandad Khan blockaded the garrisons of no less than 22 Sikh posts in Upper Tanawal; and when they surrendered, he spared their lives, as the servants of a fallen Empire. Colonel H. B. Edwards later commented on this "The act, however, stood him afterwards in good stead; for, when Hazara was assigned to Maharaja Golab Singh, that politic ruler rewarded Jehandad Khan's humanity with the jagir of Koolge and Badnuck in Lower Tannowul."

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

Edit

PCB’s ‘Pakistan Strike Force’ camp begins at NCA

Urdu Point 14 Jan 2025
... Yasir Khan (Rawalpindi).</p><p>Haider Ali, Jahandad Khan, Khushdil Shah, Mohammad Abbas Afridi, Mubasir Khan, Muhammad Irfan Khan and Usman Khan are the seven Pakistan capped cricketers.
Edit

Warner, Williamson, Joseph and Mitchell to debut in HBL PSL 2025

Urdu Point 13 Jan 2025
Daryl Mitchell, Fakhar Zaman and Shaheen Shah Afridi (all Platinum), Haris Rauf (Brand Ambassador), Kusal Perera and Sikandar Raza (all Diamond), Abdullah Shafique, Jahandad Khan and Zaman Khan (all ...
Edit

PCB announces revised schedule, venue for PSL 10 draft

The News International 07 Jan 2025
Pakistan Super League (PSL) 10 draft. — X ... Shadab Khan, Naseem Shah ... Imad Wasim (mentor), Azam Khan. Gold ... David Willey (mentor), Iftikhar Ahmed (brand ambassador), Usman Khan ... Shan Masood, Muhammad Irfan Khan ... Abdullah Shafique, Jahandad Khan, Zaman Khan ... .
Edit

PSL 10: Franchises announce retentions without any trade

Urdu Point 04 Jan 2025
</p><p>Abdullah Shafique, Jahandad Khan and Zaman Khan have been retained in Gold by the Qalandars ... </p><p>Islamabad United (8) Shadab Khan and Naseem Shah (both Platinum), Imad ...
Edit

HBL PSL 10 player retentions announced ahead of draft

The News International 04 Jan 2025
... Azam Khan ... Shaheen Shah Afridi and Fakhar Zaman (both Platinum), Haris Rauf (Brand Ambassador) and Sikandar Raza (both Diamond), Abdullah Shafique, Jahandad Khan and Zaman Khan, David Wiese (Silver).
Edit

Yasir and Ali star as Stallions clinch Champions T20 Cup

Dawn 26 Dec 2024
They relied heavily on Fakhar Zaman who failed to follow up his belli­g­e­rent 89 in the Qualifiers, falling for 20 to Jahandad Khan, who finished with 2-31 ... MARKHOR’S opener Fakhar Zaman is cleaned up by Stallion’s pacer Jahandad Khan.
Edit

PCB makes random fitness test mandatory for players

The News International 26 Dec 2024
... Sajid Khan was asked to appear for a random test ... Haris Sohail, Tayyab Tahir, Abrar Ahmad and Jahandad Khan were asked to play for Stallions just a day after returning back from South Africa.
Edit

Allied Bank Stallions clinch Bahria Town Champions T20 Cup with convincing win

Urdu Point 25 Dec 2024
Later contributions from Jahandad Khan (22*) and Shoaib Malik (6*) ensured a strong finish ... Mohammad Ali and Jahandad Khan's disciplined bowling ensured no significant partnerships ...
Edit

Four players promoted to platinum category

The News International 18 Dec 2024
Lahore Qalandars - Fakhar Zaman, Haris Rauf, Shaheen Afridi (all Platinum), Abdullah Shafique (Diamond), Sahibzada Farhan, Zaman Khan, Mirza Tahir Baig, Kamran Ghulam, Jahandad Khan (all Gold), Ahsan ...
Edit

Hendricks century takes South Africa to T20 series win over Pakistan

Dawn 14 Dec 2024
Usman Khan c Maphaka b Galiem 3 ... Irfan Khan c van der Dussen b Baartman 30 ... Shaheen Shah Afridi, Jahandad Khan, Haris Rauf, Abrar Ahmed ... Rickelton c Rizwan b Jahandad 2 ... Breetzke c Shaheen b Jahandad 12.
Edit

South Africa vs Pakistan 3rd T20I Live Streaming: When and where to watch SA vs ...

Hindustan Times 14 Dec 2024
Mohammad Rizwan (captain), Abrar Ahmed, Babar Azam, Haris Rauf, Jahandad Khan, Mohammad Abbas Afridi, Mohammad Hasnain, Muhammad Irfan Khan, Omair Bin Yousuf, Saim Ayub, Salman Ali Agha, Shaheen Shah Afridi, Sufyan Moqim, Tayyab Tahir and Usman Khan.
Edit

PAK vs SA: PCB unveils playing XI for second T20I match

The News International 13 Dec 2024
The playing XI for the second T20I against South Africa revealed by Pakistan Cricket Board (PCB) on Friday with one change in the side as Jahandad Khan replaced Sufiyan Muqeem.
Edit

Pakistan decide to bat first against South Africa in second T20I

The News International 13 Dec 2024
— Instagram/therealpcb ... “We are going to bat first ... Mohammad Rizwan (captain and wicketkeeper), Babar Azam, Saim Ayub, Usman Khan, Tayyab Tahir, Muhammad Irfan Khan, Mohammad Abbas Afridi, Shaheen Shah Afridi, Jahandad Khan, Haris Rauf and Abrar Ahmed.

Most Viewed

×