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

Bharatiya Lok Dal

Bharatiya Lok Dal (Hindi: भारतीय लोक दल, "Indian Peoples' Party") was a political party in India. The BLD was formed at the end of 1974 through the fusion of seven parties opposed to the autocratic rule of Indira Gandhi, including the Swatantra Party, the Utkal Congress, the Bharatiya Kranti Dal, and the Socialist Party. The leader of the BLD was Charan Singh.

In 1977, the BLD combined with the Jan Sangh and the Indian National Congress (Organization) to form the Janata Party. The newly formed Janata Party contested the 1977 elections on the BLD symbol and formed independent India's first government not ruled by the Indian National Congress.

Subsequently Ajit Singh son of Charan Singh founded the Rashtriya Lok Dal (RLD).Now Lokdal is led by Chaudhary Sunil Singh of Aligarh

Constituent Parties

  • Bharatiya Kranti Dal
  • Swatantra Party
  • Socialist Party
  • Praja Socialist Party
  • Samyukta Socialist Party
  • Utkal Congress
  • References

  • http://timesofindia.indiatimes.com/city/lucknow/Lok-Dal-jumps-into-poll-fray-as-Chaudharys-heir/articleshow/11560154.cms
  • Lok Dal (Charan)

    Lok Dal (Charan) or Lok Dal (Charan Singh), a political party in Uttar Pradesh, India. LD(C) was formed on June 7, 2003 when Rashtriya Lok Dal vice-president Rameshwar Singh split. Singh was opposed to the move of RLD to withdraw support from the Mayawati state cabinet.The party is named after Charan Singh, the founder of the original Lok Dal and father of RLD leader Ajit Singh.

    Podcasts:

    • Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Polls

      Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh have finalised a pre-poll alliance for the Uttar Pradesh Assembly elections 2022. Both the leaders today tweeted photos of their meeting on their respective Twitter accounts. In a photo tweeted by the SP chief, Yadav is seen holding Singh’s hands with a caption reading “with Jayant Chaudhary on the path of development”. Meanwhile, the RLD chief also tweeted a photo of himself with the Samajwadi Party chief and captioned it “badte kadam”. #AkhileshYadav #JayantSingh #SamajwadiParty #RashtriyaLokDal #IndiaToday Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscrib...

      published: 23 Nov 2021
    • Rashtriya Lokdal Anthem | R L D Aayi Re | Anndy Jaat | New Haryanvi Songs Haryanavi 2021

      Anndy Jaat Records Presents 'Rashtriya Lokdal Anthem' New Haryanvi Songs Haryanavi 2021, Latest Haryanvi Song 2021 & New Hr Song 2021. Sung by Mahesh Nagar & Anndy Jaat. #RashtriyaLokdalAnthem #AnndyJaat #HaryanviSong #HaryanviSongs2021 #NewHaryanviSong #Jaat #HaryanviSongsHaryanavi2021 #LatestHaryanviSongs #NewHrSong #NewJaatSong #RLD #Anthem Download/Listen 'Rashtriya Lokdal Anthem' : Gaana :https://gaana.com/song/rashtriya-lokdal-anthem Wynk :https://wynk.in/music/song/rashtriya-lokdal-anthem/bl_A10320WT038786133Y Hungama :https://www.hungama.com/album/rashtriya-lokdal-anthem/64766124/ JioSaavn :https://www.saavn.com/s/song/hindi/Rashtriya-Lokdal-Anthem/Rashtriya-Lokdal-Anthem/Mj4SZg1eckE Apple Music :https://music.apple.com/in/album/rashtriya-lokdal-anthem-single/1562445565?ls Amazon ...

      published: 09 Apr 2021
    • Jayant Chaudhary's Rashtriya Lok Dal Formally Joins BJP-Led NDA Alliance

      On a day that the BJP released its first list of 195 candidates for the Lok Sabha polls, the National Democratic Alliance led by the party also got a boost with Jayant Chaudhary's Rashtriya Lok Dal formally joining the bloc. The Uttar Pradesh-based party was a part of the opposition INDIA alliance and had been indicating for some time now that the switch was likely to happen. #RLD #JayantChaudhary #RashtriyaLokDal #NDA #BJP #LokSabhaElections #LokSabhaElections2024 About NDTV (English news channel): NDTV is India's Most-Trusted News Broadcaster with the latest updates in news, sports, entertainment and much more from within India and around the world. Watch big political debates, exclusive entertainment interviews, news bulletins, current affairs, talk shows and tech reviews with o...

      published: 02 Mar 2024
    • BJP Eyes Alliance With Rashtriya Lok Dal To Shore Up Prospects In Western Uttar Pradesh | Top News

      Top News | As the BJP-RLD talks near their conclusion, the saffron party has begun seat-sharing talks with the leadership of the TDP and SAD for the Lok Sabha elections. The Jayant Chaudhary-led RLD has reportedly been offered the BJP's Bijnor and Baghpat Lok Sabha seats in Uttar Pradesh. In the most recent Lok Sabha elections, the BJP secured the Baghpat seat but lost Bijnor to the BSP. Chaudhary was a Baghpat-based RLD candidate. RLD has also chosen to accept the invitation from the UP government to visit Ayodhya on February 11 amid the excitement around the partnership. Keep an eye on Mirror Now for the latest developments. #bjp #rld #jayantchaudhary #uttarpradesh #uttarpradeshnews #ayodhya #loksabhaelections #2024elections #2024loksabhaelections #mirrornow #topnews #englishnews #lat...

      published: 09 Feb 2024
    • Samajwadi Party & Rashtriya Lok Dal Strike Poll Alliance, Seat Sharing Deal For U.P. Polls Underway

      Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh have finalised a pre-poll alliance for the Uttar Pradesh Assembly elections 2022. Both the leaders today tweeted photos of their meeting on their respective Twitter accounts. #AkhileshYadav #JayantSingh #SamajwadiParty #RashtriyaLokDal #IndiaToday Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and...

      published: 23 Nov 2021
    • Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer | Vtv News

      Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer. Download VTV Gujarati News App at https://goo.gl/2LYNZd VTV Gujarati News Channel is also available on other social media platforms...visit us at http://www.vtvgujarati.com/ Connect with us at Facebook! https://www.facebook.com/vtvgujarati/ Follow us on Instagram https://www.instagram.com/vtv_gujarati_news/ Follow us on Twitter! https://twitter.com/vtvgujarati Join us on Google+ https://plus.google.com/+VtvGujaratiGaurav/ Join us at LinkedIn https://www.linkedin.com/company/vtv-gujarati

      published: 23 Dec 2018
    • Rashtriya Lok Dal Chief Shares Pic With Akhilesh Yadav, Alliance Sealedz

      A pre-poll alliance between the Rashtriya Lok Dal (RLD) and Samajwadi Party (SP) has been confirmed, RLD president Jayant Singh Chaudhary told NDTV today. After the two leaders met in Lucknow, Mr Chaudhary said a formal announcement will be made soon. Talks on seat-sharing are in the final stages with Akhilesh Yadav, he added. The RLD chief also strongly denied any arrangement with the BJP. "No question of going with BJP," he said. About Us: NDTV brings you unbiased and comprehensive coverage of news and entertainment programmes in India and abroad. NDTV delivers reliable information across all platforms: TV, Internet and Mobile. Subscribe to our channels: NDTV: https://www.youtube.com/user/ndtv?sub_confirmation=1 NDTV India (Hindi News): https://www.youtube.com/user/ndtvindia?sub_confi...

      published: 23 Nov 2021
    • Lok Dal के बैनर तले शाम 5 बजे तक चलेगी किसानों की महापंचायत| ABP Ganga

      लोक दल के बैनर तले किसानों की महापंचायत होगी। आज सुबह 10 बजे से शाम 5 बजे तक चलेगी ये महापंचायत। प्रदेश प्रदेश जाकर किसानों को जागरूक करेंगे लोग। राष्ट्रिय अध्यक्ष चौधरी सुनील सिंह भी होंगे इसमें शामिल। वाराणसी और आस-पास के जिलों में पहुंचेंगे किसान।

      published: 08 Mar 2021
    • Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन

      Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन #RLD #RashtriyaLokDal #RLDChief #AjitSingh #RLDChiefAjitSingh #Coronavirus #Covid19 #Gurugram

      published: 06 May 2021
    • "Still Shocked And Traumatised": Rashtriya Lok Dal Leader On Hathras Lathi Charge

      Senior Rashtriya Lok Dal leader Jayant Chaudhary speaks to NDTV about the Hathras case and Uttar Pradesh cops' lathi charge on his party's workers. "I am not a criminal. We were there for a good cause - people will see the video and think how can common citizens be safe if an MP (former) can be hit in a brutal manner," he says NDTV is one of the leaders in the production and broadcasting of un-biased and comprehensive news and entertainment programmes in India and abroad. NDTV delivers reliable information across all platforms: TV, Internet and Mobile. Subscribe for more videos: https://www.youtube.com/user/ndtv?sub_confirmation=1 Like us on Facebook: https://www.facebook.com/ndtv Follow us on Twitter: https://twitter.com/ndtv Download the NDTV Apps: http://www.ndtv.com/page/apps W...

      published: 06 Oct 2020
    Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Polls
    3:35

    Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Polls

    • Order:
    • Duration: 3:35
    • Uploaded Date: 23 Nov 2021
    • views: 6261
    Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh have finalised a pre-poll alliance for the Uttar Pradesh Assembly elections 2022. Both the leaders today tweeted photos of their meeting on their respective Twitter accounts. In a photo tweeted by the SP chief, Yadav is seen holding Singh’s hands with a caption reading “with Jayant Chaudhary on the path of development”. Meanwhile, the RLD chief also tweeted a photo of himself with the Samajwadi Party chief and captioned it “badte kadam”. #AkhileshYadav #JayantSingh #SamajwadiParty #RashtriyaLokDal #IndiaToday Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday Telegram: https://t.me/indiatodayofficial
    https://wn.com/Akhilesh_Yadav_Announces_Alliance_With_Rashtriya_Lok_Dal_Ahead_Of_Crucial_Uttar_Pradesh_Polls
    Rashtriya Lokdal Anthem | R L D Aayi Re | Anndy Jaat | New Haryanvi Songs Haryanavi 2021
    3:08

    Rashtriya Lokdal Anthem | R L D Aayi Re | Anndy Jaat | New Haryanvi Songs Haryanavi 2021

    • Order:
    • Duration: 3:08
    • Uploaded Date: 09 Apr 2021
    • views: 8846724
    Anndy Jaat Records Presents 'Rashtriya Lokdal Anthem' New Haryanvi Songs Haryanavi 2021, Latest Haryanvi Song 2021 & New Hr Song 2021. Sung by Mahesh Nagar & Anndy Jaat. #RashtriyaLokdalAnthem #AnndyJaat #HaryanviSong #HaryanviSongs2021 #NewHaryanviSong #Jaat #HaryanviSongsHaryanavi2021 #LatestHaryanviSongs #NewHrSong #NewJaatSong #RLD #Anthem Download/Listen 'Rashtriya Lokdal Anthem' : Gaana :https://gaana.com/song/rashtriya-lokdal-anthem Wynk :https://wynk.in/music/song/rashtriya-lokdal-anthem/bl_A10320WT038786133Y Hungama :https://www.hungama.com/album/rashtriya-lokdal-anthem/64766124/ JioSaavn :https://www.saavn.com/s/song/hindi/Rashtriya-Lokdal-Anthem/Rashtriya-Lokdal-Anthem/Mj4SZg1eckE Apple Music :https://music.apple.com/in/album/rashtriya-lokdal-anthem-single/1562445565?ls Amazon :https://www.amazon.com/dp/B0925PHF11 Amazon Music :https://music.amazon.com/albums/B0925PHF11 YouTube Music :https://music.youtube.com/watch?v=kxudGFoNv-M&feature=share Spotify :https://open.spotify.com/album/1xwRxHzTiY6MHb8uHQNuCB?si=5tXID0u5RM6S8lq4QZXXvQ&utm_source=copy-link Tidal :https://store.tidal.com/in/album/180187292 KKBox :https://www.kkbox.com/tw/en/song/VKd00xKOZON3GNq13GNq10XL-index.html Resso :https://m.resso.app/ZSJr2PfsG/ Song : Rashtriya Lokdal Anthem Starring : Anndy Jaat Singer : Mahesh Nagar Lyrics : Anndy Jaat Composer : Anndy Jaat Music : Music Tony Editor : Bunty Garg DOP : Rahul Teotia Producer :- Veer Mahendra Teotia MixMaster : MT Studio (Tony Garg) Special Thanks : All Jaat Community Label : Anndy Jaat Records Contact & Information : 8979563554 Online Promotions : Blue Diamond Media https://Instagram.com/blue_diamond_media Digital Partner : Blue Diamond Media https://Instagram.com/blue_diamond_media Thanks Everyone for Watching Our New Latest Haryanvi Songs Haryanavi 2021 & Latest Jaat Songs 2021. Subscribe our Channel & Press bell Icon to get New Latest Most Popular Superhit Haryanvi Songs 2021. Connect with Anndy Jaat Records : -------------------------------------------------------- ► Subscribe to Anndy Jaat Records : https://bit.ly/33wQDjE ► Follow Us On Instagram : https://www.instagram.com/anndyjaatrecords
    https://wn.com/Rashtriya_Lokdal_Anthem_|_R_L_D_Aayi_Re_|_Anndy_Jaat_|_New_Haryanvi_Songs_Haryanavi_2021
    Jayant Chaudhary's Rashtriya Lok Dal Formally Joins BJP-Led NDA Alliance
    0:57

    Jayant Chaudhary's Rashtriya Lok Dal Formally Joins BJP-Led NDA Alliance

    • Order:
    • Duration: 0:57
    • Uploaded Date: 02 Mar 2024
    • views: 5226
    On a day that the BJP released its first list of 195 candidates for the Lok Sabha polls, the National Democratic Alliance led by the party also got a boost with Jayant Chaudhary's Rashtriya Lok Dal formally joining the bloc. The Uttar Pradesh-based party was a part of the opposition INDIA alliance and had been indicating for some time now that the switch was likely to happen. #RLD #JayantChaudhary #RashtriyaLokDal #NDA #BJP #LokSabhaElections #LokSabhaElections2024 About NDTV (English news channel): NDTV is India's Most-Trusted News Broadcaster with the latest updates in news, sports, entertainment and much more from within India and around the world. Watch big political debates, exclusive entertainment interviews, news bulletins, current affairs, talk shows and tech reviews with our 24x7 news live streams, packed with credible information across all platforms: TV, Internet and Mobile. For Latest Videos, click here: https://www.youtube.com/playlist?list=PLYSfYVdrOZvh5iPadUPTAg3sxFD_DZpT_ To watch NDTV 24x7's premium shows listed together for your easy access, click here: https://www.youtube.com/@NDTV/playlists?view=50&sort=dd&shelf_id=5 For Ground Reports and Analysis from NDTV's reporters and anchors of day's top news stories, click here: https://www.youtube.com/playlist?list=PLYSfYVdrOZvgHr6OHiZYKbr_21MOmvk04 For News in Shorts, click here: https://www.youtube.com/playlist?list=PLYSfYVdrOZvjJ8fhLPk_Fz4tFARkpG-Y- Subscribe to our channel to get latest news updates. Follow us on Social Media: Like us on Facebook: https://www.facebook.com/ndtv/ Follow us on Twitter: https://twitter.com/ndtv/ Follow us on WhatsApp: https://whatsapp.com/channel/0029Va4lixw7z4kcvZI9JM12 Follow us on Instagram: https://www.instagram.com/ndtv/ Join NDTV on Telegram Messenger: https://t.me/NDTVbot/?start=hi Follow us on Google News for Breaking and Latest News Updates: NDTV: https://bit.ly/3e5ngbP NDTV India (Hindi News): https://bit.ly/3mNVwMY Download NDTV Mobile Apps: http://www.ndtv.com/page/apps #BreakingNews #LatestNews #TodayNews #CurrentAffairs #News #IndiaNews #NDTV
    https://wn.com/Jayant_Chaudhary's_Rashtriya_Lok_Dal_Formally_Joins_Bjp_Led_Nda_Alliance
    BJP Eyes Alliance With Rashtriya Lok Dal To Shore Up Prospects In Western Uttar Pradesh | Top News
    1:47

    BJP Eyes Alliance With Rashtriya Lok Dal To Shore Up Prospects In Western Uttar Pradesh | Top News

    • Order:
    • Duration: 1:47
    • Uploaded Date: 09 Feb 2024
    • views: 1187
    Top News | As the BJP-RLD talks near their conclusion, the saffron party has begun seat-sharing talks with the leadership of the TDP and SAD for the Lok Sabha elections. The Jayant Chaudhary-led RLD has reportedly been offered the BJP's Bijnor and Baghpat Lok Sabha seats in Uttar Pradesh. In the most recent Lok Sabha elections, the BJP secured the Baghpat seat but lost Bijnor to the BSP. Chaudhary was a Baghpat-based RLD candidate. RLD has also chosen to accept the invitation from the UP government to visit Ayodhya on February 11 amid the excitement around the partnership. Keep an eye on Mirror Now for the latest developments. #bjp #rld #jayantchaudhary #uttarpradesh #uttarpradeshnews #ayodhya #loksabhaelections #2024elections #2024loksabhaelections #mirrornow #topnews #englishnews #latestnews #latestupdates SUBSCRIBE NOW for more such videos ►http://bit.ly/2LesD8T For More Updates ► http://www.mirrornownews.com Like us on Facebook ► https://www.facebook.com/MirrorNow Follow us on Twitter ► https://twitter.com/MirrorNow Follow us on Instagram ► https://www.instagram.com/mirrornow_in/
    https://wn.com/Bjp_Eyes_Alliance_With_Rashtriya_Lok_Dal_To_Shore_Up_Prospects_In_Western_Uttar_Pradesh_|_Top_News
    Samajwadi Party & Rashtriya Lok Dal Strike Poll Alliance, Seat Sharing Deal For U.P. Polls Underway
    4:05

    Samajwadi Party & Rashtriya Lok Dal Strike Poll Alliance, Seat Sharing Deal For U.P. Polls Underway

    • Order:
    • Duration: 4:05
    • Uploaded Date: 23 Nov 2021
    • views: 6705
    Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh have finalised a pre-poll alliance for the Uttar Pradesh Assembly elections 2022. Both the leaders today tweeted photos of their meeting on their respective Twitter accounts. #AkhileshYadav #JayantSingh #SamajwadiParty #RashtriyaLokDal #IndiaToday Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday Telegram: https://t.me/indiatodayofficial
    https://wn.com/Samajwadi_Party_Rashtriya_Lok_Dal_Strike_Poll_Alliance,_Seat_Sharing_Deal_For_U.P._Polls_Underway
    Lok Dal leader  Sunil Singh Chaudhary claims Hanuman was farmer | Vtv News
    1:18

    Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer | Vtv News

    • Order:
    • Duration: 1:18
    • Uploaded Date: 23 Dec 2018
    • views: 617
    Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer. Download VTV Gujarati News App at https://goo.gl/2LYNZd VTV Gujarati News Channel is also available on other social media platforms...visit us at http://www.vtvgujarati.com/ Connect with us at Facebook! https://www.facebook.com/vtvgujarati/ Follow us on Instagram https://www.instagram.com/vtv_gujarati_news/ Follow us on Twitter! https://twitter.com/vtvgujarati Join us on Google+ https://plus.google.com/+VtvGujaratiGaurav/ Join us at LinkedIn https://www.linkedin.com/company/vtv-gujarati
    https://wn.com/Lok_Dal_Leader_Sunil_Singh_Chaudhary_Claims_Hanuman_Was_Farmer_|_Vtv_News
    Rashtriya Lok Dal Chief Shares Pic With Akhilesh Yadav, Alliance Sealedz
    4:03

    Rashtriya Lok Dal Chief Shares Pic With Akhilesh Yadav, Alliance Sealedz

    • Order:
    • Duration: 4:03
    • Uploaded Date: 23 Nov 2021
    • views: 6835
    A pre-poll alliance between the Rashtriya Lok Dal (RLD) and Samajwadi Party (SP) has been confirmed, RLD president Jayant Singh Chaudhary told NDTV today. After the two leaders met in Lucknow, Mr Chaudhary said a formal announcement will be made soon. Talks on seat-sharing are in the final stages with Akhilesh Yadav, he added. The RLD chief also strongly denied any arrangement with the BJP. "No question of going with BJP," he said. About Us: NDTV brings you unbiased and comprehensive coverage of news and entertainment programmes in India and abroad. NDTV delivers reliable information across all platforms: TV, Internet and Mobile. Subscribe to our channels: NDTV: https://www.youtube.com/user/ndtv?sub_confirmation=1 NDTV India (Hindi News): https://www.youtube.com/user/ndtvindia?sub_confirmation=1 Follow us on Social Media: Like us on Facebook: https://www.facebook.com/ndtv/ Follow us on Twitter: https://twitter.com/ndtv/ Follow us on Koo: https://www.kooapp.com/profile/ndtv Follow us on Instagram: https://www.instagram.com/ndtv/ Join NDTV on Telegram Messenger: https://t.me/NDTVbot/?start=hi Follow us on Google News for Breaking and Latest News Updates: NDTV: https://bit.ly/3e5ngbP NDTV India (Hindi News): https://bit.ly/3mNVwMY Download NDTV Mobile Apps: http://www.ndtv.com/page/apps Watch More Videos: http://www.ndtv.com/video?yt #BreakingNews #LatestNews #TodayNews #PoliticalNews #News
    https://wn.com/Rashtriya_Lok_Dal_Chief_Shares_Pic_With_Akhilesh_Yadav,_Alliance_Sealedz
    Lok Dal के बैनर तले शाम 5 बजे तक चलेगी किसानों की महापंचायत| ABP Ganga
    2:40

    Lok Dal के बैनर तले शाम 5 बजे तक चलेगी किसानों की महापंचायत| ABP Ganga

    • Order:
    • Duration: 2:40
    • Uploaded Date: 08 Mar 2021
    • views: 610
    लोक दल के बैनर तले किसानों की महापंचायत होगी। आज सुबह 10 बजे से शाम 5 बजे तक चलेगी ये महापंचायत। प्रदेश प्रदेश जाकर किसानों को जागरूक करेंगे लोग। राष्ट्रिय अध्यक्ष चौधरी सुनील सिंह भी होंगे इसमें शामिल। वाराणसी और आस-पास के जिलों में पहुंचेंगे किसान।
    https://wn.com/Lok_Dal_के_बैनर_तले_शाम_5_बजे_तक_चलेगी_किसानों_की_महापंचायत|_Abp_Ganga
    Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन
    8:32

    Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन

    • Order:
    • Duration: 8:32
    • Uploaded Date: 06 May 2021
    • views: 6183
    Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन #RLD #RashtriyaLokDal #RLDChief #AjitSingh #RLDChiefAjitSingh #Coronavirus #Covid19 #Gurugram
    https://wn.com/Rashtriya_Lok_Dal_Chief_Ajit_Singh_Dies_Of_Corona_|_राष्ट्रीय_लोक_दल_के_मुखिया_अजित_सिंह_का_निधन
    "Still Shocked And Traumatised": Rashtriya Lok Dal Leader On Hathras Lathi Charge
    9:31

    "Still Shocked And Traumatised": Rashtriya Lok Dal Leader On Hathras Lathi Charge

    • Order:
    • Duration: 9:31
    • Uploaded Date: 06 Oct 2020
    • views: 15012
    Senior Rashtriya Lok Dal leader Jayant Chaudhary speaks to NDTV about the Hathras case and Uttar Pradesh cops' lathi charge on his party's workers. "I am not a criminal. We were there for a good cause - people will see the video and think how can common citizens be safe if an MP (former) can be hit in a brutal manner," he says NDTV is one of the leaders in the production and broadcasting of un-biased and comprehensive news and entertainment programmes in India and abroad. NDTV delivers reliable information across all platforms: TV, Internet and Mobile. Subscribe for more videos: https://www.youtube.com/user/ndtv?sub_confirmation=1 Like us on Facebook: https://www.facebook.com/ndtv Follow us on Twitter: https://twitter.com/ndtv Download the NDTV Apps: http://www.ndtv.com/page/apps Watch more videos: http://www.ndtv.com/video?yt
    https://wn.com/Still_Shocked_And_Traumatised_Rashtriya_Lok_Dal_Leader_On_Hathras_Lathi_Charge
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Polls
      3:35
      Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Pollsremove from playlist
    • Rashtriya Lokdal Anthem | R L D Aayi Re | Anndy Jaat | New Haryanvi Songs Haryanavi 2021
      3:08
      Rashtriya Lokdal Anthem | R L D Aayi Re | Anndy Jaat | New Haryanvi Songs Haryanavi 2021remove from playlist
    • Jayant Chaudhary's Rashtriya Lok Dal Formally Joins BJP-Led NDA Alliance
      0:57
      Jayant Chaudhary's Rashtriya Lok Dal Formally Joins BJP-Led NDA Allianceremove from playlist
    • BJP Eyes Alliance With Rashtriya Lok Dal To Shore Up Prospects In Western Uttar Pradesh | Top News
      1:47
      BJP Eyes Alliance With Rashtriya Lok Dal To Shore Up Prospects In Western Uttar Pradesh | Top Newsremove from playlist
    • Samajwadi Party & Rashtriya Lok Dal Strike Poll Alliance, Seat Sharing Deal For U.P. Polls Underway
      4:05
      Samajwadi Party & Rashtriya Lok Dal Strike Poll Alliance, Seat Sharing Deal For U.P. Polls Underwayremove from playlist
    • Lok Dal leader  Sunil Singh Chaudhary claims Hanuman was farmer | Vtv News
      1:18
      Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer | Vtv Newsremove from playlist
    • Rashtriya Lok Dal Chief Shares Pic With Akhilesh Yadav, Alliance Sealedz
      4:03
      Rashtriya Lok Dal Chief Shares Pic With Akhilesh Yadav, Alliance Sealedzremove from playlist
    • Lok Dal के बैनर तले शाम 5 बजे तक चलेगी किसानों की महापंचायत| ABP Ganga
      2:40
      Lok Dal के बैनर तले शाम 5 बजे तक चलेगी किसानों की महापंचायत| ABP Gangaremove from playlist
    • Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन
      8:32
      Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधनremove from playlist
    • 9:31
      "Still Shocked And Traumatised": Rashtriya Lok Dal Leader On Hathras Lathi Chargeremove from playlist
    PLAYLIST TIME: 0:00 / 39:36

    Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Polls

    Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh have finalised a pre-poll alliance for the Uttar Pradesh Assembly elections 2022. Both the leaders today tweeted photos of their meeting on their respective Twitter accounts. In a photo tweeted by the SP chief, Yadav is seen holding Singh’s hands with a caption reading “with Jayant Chaudhary on the path of development”. Meanwhile, the RLD chief also tweeted a photo of himself with the Samajwadi Party chief and captioned it “badte kadam”. #AkhileshYadav #JayantSingh #SamajwadiParty #RashtriyaLokDal #IndiaToday Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday Telegram: https://t.me/indiatodayofficial
    3:35
    Akhilesh Yadav Announces Alliance With Rashtriya Lok Dal Ahead Of Crucial Uttar Pradesh Polls
    Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh ha...
    published: 23 Nov 2021
    Play in Full Screen
    3:08
    Rashtriya Lokdal Anthem | R L D Aayi Re | Anndy Jaat | New Haryanvi Songs Haryanavi 2021
    Anndy Jaat Records Presents 'Rashtriya Lokdal Anthem' New Haryanvi Songs Haryanavi 2021, L...
    published: 09 Apr 2021
    Play in Full Screen
    0:57
    Jayant Chaudhary's Rashtriya Lok Dal Formally Joins BJP-Led NDA Alliance
    On a day that the BJP released its first list of 195 candidates for the Lok Sabha polls, t...
    published: 02 Mar 2024
    Play in Full Screen
    1:47
    BJP Eyes Alliance With Rashtriya Lok Dal To Shore Up Prospects In Western Uttar Pradesh | Top News
    Top News | As the BJP-RLD talks near their conclusion, the saffron party has begun seat-sh...
    published: 09 Feb 2024
    Play in Full Screen
    4:05
    Samajwadi Party & Rashtriya Lok Dal Strike Poll Alliance, Seat Sharing Deal For U.P. Polls Underway
    Samajwadi Party chief Akhilesh Yadav and Rashtriya Lok Dal (RLD) president Jayant Singh ha...
    published: 23 Nov 2021
    Play in Full Screen
    1:18
    Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer | Vtv News
    Lok Dal leader Sunil Singh Chaudhary claims Hanuman was farmer. Download VTV Gujarati Ne...
    published: 23 Dec 2018
    Play in Full Screen
    4:03
    Rashtriya Lok Dal Chief Shares Pic With Akhilesh Yadav, Alliance Sealedz
    A pre-poll alliance between the Rashtriya Lok Dal (RLD) and Samajwadi Party (SP) has been ...
    published: 23 Nov 2021
    Play in Full Screen
    2:40
    Lok Dal के बैनर तले शाम 5 बजे तक चलेगी किसानों की महापंचायत| ABP Ganga
    लोक दल के बैनर तले किसानों की महापंचायत होगी। आज सुबह 10 बजे से शाम 5 बजे तक चलेगी ये महाप...
    published: 08 Mar 2021
    Play in Full Screen
    8:32
    Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह का निधन
    Rashtriya Lok Dal Chief Ajit Singh Dies Of Corona | राष्ट्रीय लोक दल के मुखिया अजित सिंह क...
    published: 06 May 2021
    Play in Full Screen
    9:31
    "Still Shocked And Traumatised": Rashtriya Lok Dal Leader On Hathras Lathi Charge
    Senior Rashtriya Lok Dal leader Jayant Chaudhary speaks to NDTV about the Hathras case and...
    published: 06 Oct 2020
    Play in Full Screen

    Bharatiya Lok Dal

    Bharatiya Lok Dal (Hindi: भारतीय लोक दल, "Indian Peoples' Party") was a political party in India. The BLD was formed at the end of 1974 through the fusion of seven parties opposed to the autocratic rule of Indira Gandhi, including the Swatantra Party, the Utkal Congress, the Bharatiya Kranti Dal, and the Socialist Party. The leader of the BLD was Charan Singh.

    In 1977, the BLD combined with the Jan Sangh and the Indian National Congress (Organization) to form the Janata Party. The newly formed Janata Party contested the 1977 elections on the BLD symbol and formed independent India's first government not ruled by the Indian National Congress.

    Subsequently Ajit Singh son of Charan Singh founded the Rashtriya Lok Dal (RLD).Now Lokdal is led by Chaudhary Sunil Singh of Aligarh

    Constituent Parties

  • Bharatiya Kranti Dal
  • Swatantra Party
  • Socialist Party
  • Praja Socialist Party
  • Samyukta Socialist Party
  • Utkal Congress
  • References

  • http://timesofindia.indiatimes.com/city/lucknow/Lok-Dal-jumps-into-poll-fray-as-Chaudharys-heir/articleshow/11560154.cms
  • '); } 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: lok dal

    Edit

    AIMIM prepares for larger role in Bihar Assembly elections

    The Siasat Daily 04 May 2025
    However, four of the five winning MLAs later defected to the Rashtriya Janata Dal (RJD). The party faced another setback in the 2024 Lok Sabha elections, failing to secure any of the eight seats it contested in Bihar.
    Edit

    Cong, INLD slam Punjab govt for stopping Haryana’s share of water

    Hindustan Times 03 May 2025
    Indian National Lok Dal (INLD) supremo Abhay Singh Chautala urged the centre to intervene into the matter and termed Punjab government’s move to deploy cops at Bhakra Nangal Dam an attack on the federal structure of the constitution ... See Less ....
    Edit

    Haryana all-party meeting on over water-sharing dispute with Punjab

    Hindustan Times 03 May 2025
    Besides the BJP, representatives of the Congress, Indian National Lok Dal, Jannayak Janata Party and the Aam Aadmi Party, participated in the meeting, a day after the AAP government in Punjab held a ...
    Edit

    Don’t compare party leaders with any revered figure: Akhilesh to SP cadre

    Hindustan Times 02 May 2025
    Samajwadi Party president Akhilesh Yadav. (HT file) ... We have told everyone not do any such thing in future ... Meanwhile, many people, including former national chief of Yuva Lok Dal Wasim Raja, joined the SP in presence of Yadav at party headquarters ... ....
    Edit

    ‘Landmark step’: All NDA parties back Centre

    Hindustan Times 01 May 2025
    Allies of the Bharatiya Janata Party-led NDA, such as the Janata Dal (United), the Lok Jan Shakti Party (Ram Vilas), the Apna Dal and the Telugu Desam Party (TDP) hailed the decision, and said the ...
    Edit

    ‘Half Akhilesh, half Ambedkar’: Why an SP poster has BJP, BSP fuming

    Financial Express 01 May 2025
    ... in the 1991 Etawah Lok Sabha polls ... Buoyed by their success, the SP and the BSP joined hands with then Ajit Singh-led Rashtriya Lok Dal (RLD) to float the Mahagathbandhan for the 2019 Lok Sabha polls.
    Edit

    Agra, the Taj of Dalit politics of Uttar Pradesh, is under siege

    The Siasat Daily 24 Apr 2025
    In the Lok Sabha election held in 2024 it made a big comeback ... As Rajputs and Jats of the west UP largely voted for BJP and its allies Rashtriya Lok Dal the task for SP to exploit the social contradictions has become easy.
    Edit

    Decode Politics: Indira Gandhi’s favourite yoga guru, and an ashram caught in a row now for 30 years

    Financial Express 24 Apr 2025
    A property mired in litigation On January 30, 1989, the Haryana government led by Om Prakash Chautala (he belonged to the Haryana Lok Dal, which later became the INLD) issued a notification to acquire ...
    Edit

    Waqf law issue: AIMPLB accuses NDA constituents of ‘stabbing Muslims in the back’

    The Times of India 22 Apr 2025
    Accusing NDA allies like Janata Dal (U), Telugu Desam Party and Lok Janshakti Party (Ram Vilas) of 'stabbing the Muslims in the back' by supporting the Waqf Amendment Act in Parliament, the All India ...
    Edit

    SP-Cong to contest 2027 U.P. polls jointly, hints Akhilesh

    Hindustan Times 21 Apr 2025
    37 and its ally Congress 6; while the BJP won 33 and its allies Rashtriya Lok Dal (RLD) bagged 2 seats and Apna Dal (S) got only one while one seat went to Azad Samaj Party (Kanshi Ram) that was not part of any alliance.
    Edit

    Haryana government to provide compensation for crop and livestock losses due to fire incidents.

    The Times of India 21 Apr 2025
    Chandigarh ... The Congress, Indian National Lok Dal (INLD), and Jannayak Janata Party (JJP) have accused the BJP-led state govt of slow response and inadequate damage assessment ... 120490048 413 . .
    Edit

    Hemant Soren appointed JMM chief, father Shibu now 'founder patron'

    The Times of India 15 Apr 2025
    The JMM won 34 seats, while its allies together claimed 22 seats — with the Congress winning 16, the Rashtriya Janata Dal (RJD) four, and the Communist Party of India (Marxist–Leninist) two.The ...
    Edit

    A Congress-RJD huddle in Delhi: What Tejashwi Yadav discussed with Rahul Gandhi, Mallikarjun Kharge

    Financial Express 15 Apr 2025
    ... he has convened in Patna on Thursday, senior Rashtriya Janata Dal (RJD) leader Tejashwi Yadav met Congress president Mallikarjun Kharge and Lok Sabha Leader of Opposition Rahul Gandhi here on Tuesday.
    ×