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

Jat people

The Jat people (Hindi pronunciation: [dʒaːʈ]) (also spelled Jatt and Jaat) are a traditionally agricultural community in Northern India and Pakistan. Originally pastoralists in the lower Indus river-valley of Sindh, Jats migrated north into the Punjab region, Delhi, Rajputana, and the western Gangetic Plain in late medieval times. Primarily of Hindu, Muslim and Sikh faiths, they now live mostly in the Indian States of Haryana, Punjab, Delhi, Rajasthan and Uttar Pradesh and the Pakistani provinces of Punjab and Sindh.

The Jat community saw radical social changes in the 17th century, the Hindu Jats took up arms against the Mughal Empire during the late 17th and early 18th century. The Hindu Jat kingdom reached its zenith under Maharaja Suraj Mal of Bharatpur (1707–1763). The Jat community of the Punjab region played an important role in the development of the martial Khalsa Panth of Sikhism; they are more commonly known as the Jat Sikhs. By the 20th century, the landowning Jats became an influential group in several parts of North India, including Haryana, Punjab,Western Uttar Pradesh,Rajasthan, and Delhi. Over the years, several Jats abandoned agriculture in favour of urban jobs, and used their dominant economic and political status to claim higher social status.

Jat, Sangli

Jath (Marathi:जत,kannada :ಜತ್ತ) is a town and taluka headquarters in Miraj subdivision of Sangli district in southern Maharashtra in India. It is often spelled as "Jath" according to South Indian lexical nomenclature. Jat is one of the largest talukas in Maharashtra state. Jat is sort of infamous for its famine-prone geographical conditions. It has been historically demographic part of Man Desh.

It was the former capital of Jath State, one of the non-salute Maratha princely states of British India, under the Bombay Presidency, and later the Deccan States Agency. It was a southern Maratha Jagir.

History

Some sources say, in ancient period, town was called Jayantinagar. Jat was capital of former Maratha Jagir ruled by Dafales. Most of the dynasty period was affiliated to Vijapur(Bijapur). For some period it was associated with Kolhapur as well as Satara Maratha Dynasties. Later Jat became a non-salute princely state until independence of India. Then it was part of Satara district. When Sangli district was formed, Jat became eastern tehsil of Sangli.

Jat (disambiguation)

May refer to:

  • Jat people
  • Muslim Jat of Punjab
  • Jats of Sindh
  • Jat Airways, a former Serbian airline
  • Jat (Sangli), a town in Maharashtra, India
  • Java Astrodynamics Toolkit
  • Java Agent Template
  • Jatt, Israel
  • Yat, a letter in Cyrillic script
  • Peripatetic Jats
  • Jāti, a community in India
  • JAT

    May refer to:

  • Japan Association of Translators
  • Journal of Analytical Toxicology, a scientific journal
  • Japan Air Transport (JAT), a defunct airline of Japan
  • Jugoslovenski Aerotransport (J.A.T), national airline of former Yugoslavia
  • Jats/JATS

    May refer to:

  • JATS, Journal Article Tag Suite (an internationally used XML scientific standard)
  • JATS, the Journal of the Adventist Theological Society
  • JATS, the Joint Air Training Scheme in which South Africa trained WW2 aircrew as part of the British Commonwealth Air Training Plan
  • The abbreviated form of the Playhouse Disney television series Johnny and the Sprites

  • Podcasts:

    • Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको

      #abpमाझा #abpmajha #monsoonsession #maharashtraassembly #maharashtrarainupdates #rain #ekanthshinde #ajitpawar #devendrafadnavis #uddhavthackeray #marathinews #maharashtrapolitics Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको Maharashtra Assembly Monsoon Session Live Updates 2023 | Ajit Pawar Vidhan Sabha LIVE | | Sharad Pawar | CM Eknath Shinde | DCM Devendra Fadnavis | Uddhav Thackeray | महाराष्ट्र विधानसभा 2023 | पावसाळी अधिवेशन | मुख्यमंत्री एकनाथ शिंदे | देवेंद्र फडणवीस | शरद पवार विरुद्ध अजित पवार | उद्धव ठाकरे शिवसेना ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the...

      published: 17 Jul 2023
    • Jat Sangli | जत पाणीप्रश्न पेटण्याची शक्यता, 'त्या' 42 गावांचा थेट महाराष्ट्र सरकारला इशारा

      If the villagers do not give water aggressively over the water issue, we will go directly to Karnataka... 42 villages warn the state government पाणी प्रश्नावरून जत ग्रामस्थ आक्रमक पाणी द्या नाही तरी थेट कर्नाटकात जाऊ...42 गावांचा राज्य सरकारला इशारा n18oc_news #basavarajbommai #jat #uddhavthackeray #vikramgokhale #eknathshinde #devendrafadnavis #maharashtrapolitics #news18lokmat #marathinews #lokmat News18 India’s leading News Network, and the Lokmat Group, Maharashtra’s leading Newspaper group, present News18Lokmat (formerly- IBN-Lokmat ) - a 24-hour Marathi News and Current Affairs Channel. The legacy of these two renowned media powerhouses will give News18Lokmat a sense of immense credibility as well as access to a vast audience base. Going on air from April 6, News18Lokmat...

      published: 24 Nov 2022
    • Gaon Tithe Majha @12Noon : Jat : Sangli : School girl death 11:05:2017

      For latest breaking news, other top stories log on to: http://abpmajha.abplive.in/ & https://www.youtube.com/abpmajhalive

      published: 11 May 2017
    • Vidhansabha Protest for Sangli Jat : जत तालुक्याचा पाणी प्रश्न पेटला, पायऱ्यांवर विरोधक आक्रमक

      #abpमाझा #abpmajha #kargil #kargilvijaydiwas #maharashtrarainupdates #monsoonsession #vidhansabha #uddhavthackeray #ekanthshinde #ajitpawar #devendrafadnavis #marathinews #maharashtrapolitics ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https:/...

      published: 26 Jul 2023
    • Maharashtra Belgaum Border वरील Jat Sangli मधील गावांना Karnataka मध्ये का जायचंय?

      #bbcmarathi #maharashtra #water #belgaum कर्नाटकमध्ये जाण्यास तयार झालेल्या जतचा पाण्याचा प्रश्न खरंच किती गंभीर आहे, या विषयी गावातले पुरुष महिला बोलत आहेत. मोटेवाडी गावची लोकसंख्या ही बाराशेचा आसपास आहे. मात्र 1984 पासून गावच्या अस्तित्वापासून याठिकाणी कोणत्याही योजनेचे पाणी पोहचू शकले नाही, मात्र पाण्याची भीषण टंचाई असल्याने इथे पिण्याच्या पाण्या बरोबर शेतीच्या पाण्याचा प्रश्न देखील गंभीर आहे, रिपोर्ट आणि शूट- सरफराज सनदी व्हीडिओ एडिट- निलेश भोसले ___________ ऐका 'गोष्ट दुनियेची' - जागतिक घडामोडींचं विश्लेषण करणारं मराठी पॉडकास्ट इथे - https://www.bbc.com/marathi/podcasts/p0b1s4nm ------------------- अधिक माहितीसाठी आमच्या वेबसाईट आणि सोशल हॅंडल्सला नक्की भेट द्या : https://www.bbc.com/marathi https://www.facebook.com/bbcnewsmarathi/ https://twitter.com/bbcnewsmarathi

      published: 09 Dec 2022
    • Sangli Jat Water : जत तालुक्यातील पूर्व भागातील गावाचा पाण्याच्या मागणीवरुन पुन्हा एल्गार

      #abpमाझा #abpmajha #Sangli #Karnataka #RajThackeray ABP Majha LIVE | Maharashtra Politics | Marathi news | Sharad Pawar | Raj Thackeray |Senate Election | PM Narendra Modi South Africa Visit to Attend BRICS Summit ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमा...

      published: 20 Aug 2023
    • Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला

      #abpमाझा #abpmajha #sangali Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला Maharashtra Assembly Monsoon Session Live Updates 2023 | Ajit Pawar Vidhan Sabha LIVE | | Sharad Pawar | CM Eknath Shinde | DCM Devendra Fadnavis | Uddhav Thackeray | महाराष्ट्र विधानसभा 2023 | पावसाळी अधिवेशन | मुख्यमंत्री एकनाथ शिंदे | देवेंद्र फडणवीस | शरद पवार विरुद्ध अजित पवार | उद्धव ठाकरे शिवसेना ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, p...

      published: 17 Jul 2023
    • Sangli मधील Jath मध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली?

      🔴लॉ़ग इन करा: https://www.mumbaitak.in/ #sangli #jath सांगलीतल्या जतमध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली? --------- डाऊनलोड करा Tak App. खालील लिंकवर करा क्लिक: https://newstak.app.link/fataak Follow us on : Website: https://www.mobiletak.in/mumbaitak Google News : https://news.google.com/publications/CAAqBwgKMLeLpAsw-pW8Aw?hl=mr&gl=IN&ceid=IN%3Amr Facebook: https://www.facebook.com/mumbaitak Instagram: https://www.instagram.com/mumbaitak Twitter: https://twitter.com/mumbai_tak इंडिया टुडेच्या मुंबई तक या मराठी युट्यूब चॅनलवर आपलं स्वागत. इंडिया टुडे ग्रुपचे मॅगझिन, इंडिया टुडे टीव्ही आणि आज तक हे लोकप्रिय न्यूज चॅनल आपल्याला माहितीच आहे. त्यानंतर आता खास मराठी प्रेक्षकांसाठी आपण भारतीय प्रादेशिक भाषेतलं पहिलं मराठी चॅनल घेऊन आलोय. महाराष्ट्रासह राष्ट्रीय आणि आंतरराष्ट्रीयस्...

      published: 01 Nov 2023
    • Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु

      #sangli #abpमाझा #abpmajha #marathinews #maharashtrapolitics Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु 65 वंचित गावांना सिंचनाचा लाभ देण्यासाठी प्रस्तावित असलेल्या म्हैसाळ विस्तारित जत उपसा सिंचन योजनेचे काम अखेर सुरू करण्यात आलेय. ज्या भागातून ही योजना जाणार त्या मार्गावर पाईपचा कार्यक्षेत्रावर पुरवठा सुरु करण्यात येतोय.  पाणी द्या अन्यथा कर्नाटकात जाऊ असा इशारा दिल्याने या भागातील सिंचन योजनेचे काम सुरु करण्याचे सरकारने  आश्वासन दिले होते.((या योजनेचे काम  2 वर्षांमध्ये पूर्ण करण्याचे नियोजित आहे. या म्हैसाळ विस्तारित जत उपसा सिंचन योजनेच्या माध्यमातून  57 किलोमीटर अंतरापर्यत पाणी पोचविले जाणार आहे. म्हैसाळ योजनेच्या टप्पा क्रमांक तीनच्या संतुलन जलाशयांमधून पाणी उचलून एकूण 57 किलोमीटर अंतरावर असलेल्या जत तालुक्यातील  मौजे ये...

      published: 11 Oct 2023
    • Maharashtra Sangli Jath Border Dispute : जत तालुका पाणी संघर्ष समितीकडून कर्नाटक सरकारचे आभार

      #ABPMajha #MarathiNews ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe to our YouTube channel here: https://www.youtube.com/c/ABPMajhaTV For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv https://www.in...

      published: 02 Dec 2022
    developed with YouTube
    Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको
    1:31

    Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको

    • Order:
    • Duration: 1:31
    • Uploaded Date: 17 Jul 2023
    • views: 10641
    #abpमाझा #abpmajha #monsoonsession #maharashtraassembly #maharashtrarainupdates #rain #ekanthshinde #ajitpawar #devendrafadnavis #uddhavthackeray #marathinews #maharashtrapolitics Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको Maharashtra Assembly Monsoon Session Live Updates 2023 | Ajit Pawar Vidhan Sabha LIVE | | Sharad Pawar | CM Eknath Shinde | DCM Devendra Fadnavis | Uddhav Thackeray | महाराष्ट्र विधानसभा 2023 | पावसाळी अधिवेशन | मुख्यमंत्री एकनाथ शिंदे | देवेंद्र फडणवीस | शरद पवार विरुद्ध अजित पवार | उद्धव ठाकरे शिवसेना ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv Instagram : https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en Marathi News Today Live | Top News | Latest News Live Today | Marathi Batmya | Headlines Today | Maharashtra Political News | Monsoon Live Updates | Maharashtra Rain | Mumbai Pune Rain Live Updates | मराठी बातम्या | ताज्या बातम्या | हेडलाईन्स टुडे | टॉप न्यूज एबीपी माझा
    https://wn.com/Sangli_Jath_जत_तालुक्यात_दुष्काळ_जाहीर_करा,_भाजप_नेत्याचा_राष्ट्रीय_महामार्गावर_रास्तारोको
    Jat Sangli | जत पाणीप्रश्न पेटण्याची शक्यता,  'त्या' 42 गावांचा थेट महाराष्ट्र सरकारला इशारा
    6:01

    Jat Sangli | जत पाणीप्रश्न पेटण्याची शक्यता, 'त्या' 42 गावांचा थेट महाराष्ट्र सरकारला इशारा

    • Order:
    • Duration: 6:01
    • Uploaded Date: 24 Nov 2022
    • views: 1480
    If the villagers do not give water aggressively over the water issue, we will go directly to Karnataka... 42 villages warn the state government पाणी प्रश्नावरून जत ग्रामस्थ आक्रमक पाणी द्या नाही तरी थेट कर्नाटकात जाऊ...42 गावांचा राज्य सरकारला इशारा n18oc_news #basavarajbommai #jat #uddhavthackeray #vikramgokhale #eknathshinde #devendrafadnavis #maharashtrapolitics #news18lokmat #marathinews #lokmat News18 India’s leading News Network, and the Lokmat Group, Maharashtra’s leading Newspaper group, present News18Lokmat (formerly- IBN-Lokmat ) - a 24-hour Marathi News and Current Affairs Channel. The legacy of these two renowned media powerhouses will give News18Lokmat a sense of immense credibility as well as access to a vast audience base. Going on air from April 6, News18Lokmat will be a world-class credible News channel for the highly aware and conscious ‘Progressive Marathi’. Follow us Website: https://bit.ly/321zn3A Twitter : https://twitter.com/news18lokmat?lang=en Facebook: https://www.facebook.com/News18Lokmat Subscribe our channel to get latest news & updates https://tinyurl.com/y4sdfw6nNews18 India’s leading News Network, and the Lokmat Group, Maharashtra’s leading Newspaper group, present News18Lokmat (formerly- IBN-Lokmat ) - a 24-hour Marathi News and Current Affairs Channel. The legacy of these two renowned media powerhouses will give News18Lokmat a sense of immense credibility as well as access to a vast audience base. Going on air from April 6, News18Lokmat will be a world-class credible News channel for the highly aware and conscious ‘Progressive Marathi’. Follow us Website: https://bit.ly/321zn3A Twitter : https://twitter.com/news18lokmat?lang=en Facebook: https://www.facebook.com/News18Lokmat Subscribe our channel to get latest news & updates https://tinyurl.com/y4sdfw6n
    https://wn.com/Jat_Sangli_|_जत_पाणीप्रश्न_पेटण्याची_शक्यता,_'त्या'_42_गावांचा_थेट_महाराष्ट्र_सरकारला_इशारा
    Gaon Tithe Majha @12Noon : Jat : Sangli : School girl death 11:05:2017
    0:24

    Gaon Tithe Majha @12Noon : Jat : Sangli : School girl death 11:05:2017

    • Order:
    • Duration: 0:24
    • Uploaded Date: 11 May 2017
    • views: 21560
    For latest breaking news, other top stories log on to: http://abpmajha.abplive.in/ & https://www.youtube.com/abpmajhalive
    https://wn.com/Gaon_Tithe_Majha_12Noon_Jat_Sangli_School_Girl_Death_11_05_2017
    Vidhansabha Protest for Sangli Jat : जत तालुक्याचा पाणी प्रश्न पेटला, पायऱ्यांवर विरोधक आक्रमक
    4:32

    Vidhansabha Protest for Sangli Jat : जत तालुक्याचा पाणी प्रश्न पेटला, पायऱ्यांवर विरोधक आक्रमक

    • Order:
    • Duration: 4:32
    • Uploaded Date: 26 Jul 2023
    • views: 2034
    #abpमाझा #abpmajha #kargil #kargilvijaydiwas #maharashtrarainupdates #monsoonsession #vidhansabha #uddhavthackeray #ekanthshinde #ajitpawar #devendrafadnavis #marathinews #maharashtrapolitics ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv Instagram : https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en Marathi News Today | Top News | Latest News Live Today | Marathi Batmya | Headlines Today | Maharashtra Political News | Monsoon Live Updates | Maharashtra Rain | Mumbai Pune Rain Live Updates | Vidhan Sabha Monsoon Session Live | विधानसभा पावसाळी अधिवेशन | मराठी बातम्या | ताज्या बातम्या | हेडलाईन्स टुडे | टॉप न्यूज एबीपी माझा
    https://wn.com/Vidhansabha_Protest_For_Sangli_Jat_जत_तालुक्याचा_पाणी_प्रश्न_पेटला,_पायऱ्यांवर_विरोधक_आक्रमक
    Maharashtra Belgaum Border वरील Jat Sangli मधील गावांना Karnataka मध्ये का जायचंय?
    6:39

    Maharashtra Belgaum Border वरील Jat Sangli मधील गावांना Karnataka मध्ये का जायचंय?

    • Order:
    • Duration: 6:39
    • Uploaded Date: 09 Dec 2022
    • views: 698492
    #bbcmarathi #maharashtra #water #belgaum कर्नाटकमध्ये जाण्यास तयार झालेल्या जतचा पाण्याचा प्रश्न खरंच किती गंभीर आहे, या विषयी गावातले पुरुष महिला बोलत आहेत. मोटेवाडी गावची लोकसंख्या ही बाराशेचा आसपास आहे. मात्र 1984 पासून गावच्या अस्तित्वापासून याठिकाणी कोणत्याही योजनेचे पाणी पोहचू शकले नाही, मात्र पाण्याची भीषण टंचाई असल्याने इथे पिण्याच्या पाण्या बरोबर शेतीच्या पाण्याचा प्रश्न देखील गंभीर आहे, रिपोर्ट आणि शूट- सरफराज सनदी व्हीडिओ एडिट- निलेश भोसले ___________ ऐका 'गोष्ट दुनियेची' - जागतिक घडामोडींचं विश्लेषण करणारं मराठी पॉडकास्ट इथे - https://www.bbc.com/marathi/podcasts/p0b1s4nm ------------------- अधिक माहितीसाठी आमच्या वेबसाईट आणि सोशल हॅंडल्सला नक्की भेट द्या : https://www.bbc.com/marathi https://www.facebook.com/bbcnewsmarathi/ https://twitter.com/bbcnewsmarathi
    https://wn.com/Maharashtra_Belgaum_Border_वरील_Jat_Sangli_मधील_गावांना_Karnataka_मध्ये_का_जायचंय
    Sangli Jat Water :  जत तालुक्यातील पूर्व भागातील गावाचा पाण्याच्या मागणीवरुन पुन्हा एल्गार
    1:20

    Sangli Jat Water : जत तालुक्यातील पूर्व भागातील गावाचा पाण्याच्या मागणीवरुन पुन्हा एल्गार

    • Order:
    • Duration: 1:20
    • Uploaded Date: 20 Aug 2023
    • views: 1705
    #abpमाझा #abpmajha #Sangli #Karnataka #RajThackeray ABP Majha LIVE | Maharashtra Politics | Marathi news | Sharad Pawar | Raj Thackeray |Senate Election | PM Narendra Modi South Africa Visit to Attend BRICS Summit ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv Instagram : https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en Marathi News Today | Latest News Live Today | Top News | Marathi Batmya | Headlines Today | Maharashtra Political News | Monsoon Live Updates | Maharashtra Rain | Mumbai Pune Rain Live Updates | मराठी बातम्या | ताज्या बातम्या | हेडलाईन्स टुडे | टॉप न्यूज एबीपी माझा
    https://wn.com/Sangli_Jat_Water_जत_तालुक्यातील_पूर्व_भागातील_गावाचा_पाण्याच्या_मागणीवरुन_पुन्हा_एल्गार
    Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला
    1:36

    Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला

    • Order:
    • Duration: 1:36
    • Uploaded Date: 17 Jul 2023
    • views: 5797
    #abpमाझा #abpmajha #sangali Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला Maharashtra Assembly Monsoon Session Live Updates 2023 | Ajit Pawar Vidhan Sabha LIVE | | Sharad Pawar | CM Eknath Shinde | DCM Devendra Fadnavis | Uddhav Thackeray | महाराष्ट्र विधानसभा 2023 | पावसाळी अधिवेशन | मुख्यमंत्री एकनाथ शिंदे | देवेंद्र फडणवीस | शरद पवार विरुद्ध अजित पवार | उद्धव ठाकरे शिवसेना ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv Instagram : https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en Marathi News Today Live | Top News | Latest News Live Today | Marathi Batmya | Headlines Today | Maharashtra Political News | Monsoon Live Updates | Maharashtra Rain | Mumbai Pune Rain Live Updates | मराठी बातम्या | ताज्या बातम्या | हेडलाईन्स टुडे | टॉप न्यूज एबीपी माझा
    https://wn.com/Jat_Drought_Sangli_दुष्काळ_जाहीर_करा,_जतचे_नागरिक_आक्रमक,_महामार्ग_रोखला
    Sangli मधील Jath मध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली?
    2:14

    Sangli मधील Jath मध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली?

    • Order:
    • Duration: 2:14
    • Uploaded Date: 01 Nov 2023
    • views: 1853
    🔴लॉ़ग इन करा: https://www.mumbaitak.in/ #sangli #jath सांगलीतल्या जतमध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली? --------- डाऊनलोड करा Tak App. खालील लिंकवर करा क्लिक: https://newstak.app.link/fataak Follow us on : Website: https://www.mobiletak.in/mumbaitak Google News : https://news.google.com/publications/CAAqBwgKMLeLpAsw-pW8Aw?hl=mr&gl=IN&ceid=IN%3Amr Facebook: https://www.facebook.com/mumbaitak Instagram: https://www.instagram.com/mumbaitak Twitter: https://twitter.com/mumbai_tak इंडिया टुडेच्या मुंबई तक या मराठी युट्यूब चॅनलवर आपलं स्वागत. इंडिया टुडे ग्रुपचे मॅगझिन, इंडिया टुडे टीव्ही आणि आज तक हे लोकप्रिय न्यूज चॅनल आपल्याला माहितीच आहे. त्यानंतर आता खास मराठी प्रेक्षकांसाठी आपण भारतीय प्रादेशिक भाषेतलं पहिलं मराठी चॅनल घेऊन आलोय. महाराष्ट्रासह राष्ट्रीय आणि आंतरराष्ट्रीयस्तरावरील महत्वाच्या बातम्या आणि घडामोडी आपल्याला अगदी सोप्या शब्दांत समजावण्याचा आमचा प्रयत्न असणार आहे. Namskar, Welcome to India Today group’s new Marathi YouTube channel – Mumbai Tak. Get all the latest important stories and updates from in and around Maharashtra in Marathi. Stay Tuned to Mumbai Tak for current affairs, politics, sports, business, entertainment, literature and many more in Marathi.
    https://wn.com/Sangli_मधील_Jath_मध्ये_तहसीलदारांची_शासकीय_गाडी_का_फोडण्यात_आली
    Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु
    2:29

    Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु

    • Order:
    • Duration: 2:29
    • Uploaded Date: 11 Oct 2023
    • views: 3089
    #sangli #abpमाझा #abpmajha #marathinews #maharashtrapolitics Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु 65 वंचित गावांना सिंचनाचा लाभ देण्यासाठी प्रस्तावित असलेल्या म्हैसाळ विस्तारित जत उपसा सिंचन योजनेचे काम अखेर सुरू करण्यात आलेय. ज्या भागातून ही योजना जाणार त्या मार्गावर पाईपचा कार्यक्षेत्रावर पुरवठा सुरु करण्यात येतोय.  पाणी द्या अन्यथा कर्नाटकात जाऊ असा इशारा दिल्याने या भागातील सिंचन योजनेचे काम सुरु करण्याचे सरकारने  आश्वासन दिले होते.((या योजनेचे काम  2 वर्षांमध्ये पूर्ण करण्याचे नियोजित आहे. या म्हैसाळ विस्तारित जत उपसा सिंचन योजनेच्या माध्यमातून  57 किलोमीटर अंतरापर्यत पाणी पोचविले जाणार आहे. म्हैसाळ योजनेच्या टप्पा क्रमांक तीनच्या संतुलन जलाशयांमधून पाणी उचलून एकूण 57 किलोमीटर अंतरावर असलेल्या जत तालुक्यातील  मौजे येळदरी पर्यत जवळपास 740 मीटर उंचीवर पाणी पोचविले जाणार आहे.या योजनेचे काम  2 वर्षांमध्ये पूर्ण करण्याचे नियोजित आहे. मराठीतील सर्व बातम्या, ब्रेकिंग न्यूज, माझा कट्टा, मुंबई, पुणे बातम्या, देश-acविदेशातील घडामोडींसाठी ABP Majha Live पाहा तुमच्या मोबाईलवर. महाराष्ट्रतील प्रत्येक बातमी सर्वात आधी एबीपी माझावर, निवडणूक विशेष कार्यक्रम, मनोरंजन, क्रीडा, खेळ माझा, क्राईम, घे भरारी, एबीपी माझा कट्टा पाहा ABP Majha वर | महानगरपालिका निवडणूक, BMC Election, Pune Election, PMC अपडेटसाठी लॉग ऑन करा https://marathi.abplive.com/ ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv Instagram : https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en
    https://wn.com/Sangli_Jat_Water_Scheme_सांगलीच्या_जतमधील_65_गावांसाठी_आनंदाची_बातमी,_'म्हैसाळ'_योजनेचं_काम_सुरु
    Maharashtra Sangli Jath Border Dispute : जत तालुका पाणी संघर्ष समितीकडून कर्नाटक सरकारचे आभार
    0:55

    Maharashtra Sangli Jath Border Dispute : जत तालुका पाणी संघर्ष समितीकडून कर्नाटक सरकारचे आभार

    • Order:
    • Duration: 0:55
    • Uploaded Date: 02 Dec 2022
    • views: 11255
    #ABPMajha #MarathiNews ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe to our YouTube channel here: https://www.youtube.com/c/ABPMajhaTV For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en
    https://wn.com/Maharashtra_Sangli_Jath_Border_Dispute_जत_तालुका_पाणी_संघर्ष_समितीकडून_कर्नाटक_सरकारचे_आभार
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको
      1:31
      Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोकोremove from playlist
    • Jat Sangli | जत पाणीप्रश्न पेटण्याची शक्यता,  'त्या' 42 गावांचा थेट महाराष्ट्र सरकारला इशारा
      6:01
      Jat Sangli | जत पाणीप्रश्न पेटण्याची शक्यता, 'त्या' 42 गावांचा थेट महाराष्ट्र सरकारला इशाराremove from playlist
    • Gaon Tithe Majha @12Noon : Jat : Sangli : School girl death 11:05:2017
      0:24
      Gaon Tithe Majha @12Noon : Jat : Sangli : School girl death 11:05:2017remove from playlist
    • Vidhansabha Protest for Sangli Jat : जत तालुक्याचा पाणी प्रश्न पेटला, पायऱ्यांवर विरोधक आक्रमक
      4:32
      Vidhansabha Protest for Sangli Jat : जत तालुक्याचा पाणी प्रश्न पेटला, पायऱ्यांवर विरोधक आक्रमकremove from playlist
    • Maharashtra Belgaum Border वरील Jat Sangli मधील गावांना Karnataka मध्ये का जायचंय?
      6:39
      Maharashtra Belgaum Border वरील Jat Sangli मधील गावांना Karnataka मध्ये का जायचंय?remove from playlist
    • Sangli Jat Water :  जत तालुक्यातील पूर्व भागातील गावाचा पाण्याच्या मागणीवरुन पुन्हा एल्गार
      1:20
      Sangli Jat Water : जत तालुक्यातील पूर्व भागातील गावाचा पाण्याच्या मागणीवरुन पुन्हा एल्गारremove from playlist
    • Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला
      1:36
      Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखलाremove from playlist
    • Sangli मधील Jath मध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली?
      2:14
      Sangli मधील Jath मध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली?remove from playlist
    • Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु
      2:29
      Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरुremove from playlist
    • Maharashtra Sangli Jath Border Dispute : जत तालुका पाणी संघर्ष समितीकडून कर्नाटक सरकारचे आभार
      0:55
      Maharashtra Sangli Jath Border Dispute : जत तालुका पाणी संघर्ष समितीकडून कर्नाटक सरकारचे आभारremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको

    #abpमाझा #abpmajha #monsoonsession #maharashtraassembly #maharashtrarainupdates #rain #ekanthshinde #ajitpawar #devendrafadnavis #uddhavthackeray #marathinews #maharashtrapolitics Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको Maharashtra Assembly Monsoon Session Live Updates 2023 | Ajit Pawar Vidhan Sabha LIVE | | Sharad Pawar | CM Eknath Shinde | DCM Devendra Fadnavis | Uddhav Thackeray | महाराष्ट्र विधानसभा 2023 | पावसाळी अधिवेशन | मुख्यमंत्री एकनाथ शिंदे | देवेंद्र फडणवीस | शरद पवार विरुद्ध अजित पवार | उद्धव ठाकरे शिवसेना ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The Mumbai-based company was launched on 22 June 2007. The channel is owned by ABP Group. ABP Majha has become a Marathi news hub which provides you with the comprehensive up-to-date news coverage from Maharashtra, all over India and the world. Get the latest top stories, current affairs, sports, business, entertainment, politics, spirituality, and many more here only on ABP Majha in Marathi language. Subscribe YouTube channel : https://bit.ly/3Cd3Hf3 For latest breaking news ( #MarathiNews #ABPMajhaVideos #ABPमाझा ) log on to: https://marathi.abplive.com/ Social Media Handles: Facebook: https://www.facebook.com/abpmajha/ Twitter: https://twitter.com/abpmajhatv Instagram : https://www.instagram.com/abpmajhatv/ Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en Marathi News Today Live | Top News | Latest News Live Today | Marathi Batmya | Headlines Today | Maharashtra Political News | Monsoon Live Updates | Maharashtra Rain | Mumbai Pune Rain Live Updates | मराठी बातम्या | ताज्या बातम्या | हेडलाईन्स टुडे | टॉप न्यूज एबीपी माझा
    1:31
    Sangli Jath : जत तालुक्यात दुष्काळ जाहीर करा, भाजप नेत्याचा राष्ट्रीय महामार्गावर रास्तारोको
    #abpमाझा #abpmajha #monsoonsession #maharashtraassembly #maharashtrarainupdates #rain #eka...
    published: 17 Jul 2023
    Play in Full Screen
    6:01
    Jat Sangli | जत पाणीप्रश्न पेटण्याची शक्यता, 'त्या' 42 गावांचा थेट महाराष्ट्र सरकारला इशारा
    If the villagers do not give water aggressively over the water issue, we will go directly ...
    published: 24 Nov 2022
    Play in Full Screen
    0:24
    Gaon Tithe Majha @12Noon : Jat : Sangli : School girl death 11:05:2017
    For latest breaking news, other top stories log on to: http://abpmajha.abplive.in/ & https...
    published: 11 May 2017
    Play in Full Screen
    4:32
    Vidhansabha Protest for Sangli Jat : जत तालुक्याचा पाणी प्रश्न पेटला, पायऱ्यांवर विरोधक आक्रमक
    #abpमाझा #abpmajha #kargil #kargilvijaydiwas #maharashtrarainupdates #monsoonsession #vidh...
    published: 26 Jul 2023
    Play in Full Screen
    6:39
    Maharashtra Belgaum Border वरील Jat Sangli मधील गावांना Karnataka मध्ये का जायचंय?
    #bbcmarathi #maharashtra #water #belgaum कर्नाटकमध्ये जाण्यास तयार झालेल्या जतचा पाण्याचा...
    published: 09 Dec 2022
    Play in Full Screen
    1:20
    Sangli Jat Water : जत तालुक्यातील पूर्व भागातील गावाचा पाण्याच्या मागणीवरुन पुन्हा एल्गार
    #abpमाझा #abpmajha #Sangli #Karnataka #RajThackeray ABP Majha LIVE | Maharashtra Politics...
    published: 20 Aug 2023
    Play in Full Screen
    1:36
    Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, महामार्ग रोखला
    #abpमाझा #abpmajha #sangali Jat drought Sangli: दुष्काळ जाहीर करा, जतचे नागरिक आक्रमक, म...
    published: 17 Jul 2023
    Play in Full Screen
    2:14
    Sangli मधील Jath मध्ये तहसीलदारांची शासकीय गाडी का फोडण्यात आली?
    🔴लॉ़ग इन करा: https://www.mumbaitak.in/ #sangli #jath सांगलीतल्या जतमध्ये तहसीलदारांची श...
    published: 01 Nov 2023
    Play in Full Screen
    2:29
    Sangli Jat Water Scheme : सांगलीच्या जतमधील 65 गावांसाठी आनंदाची बातमी, 'म्हैसाळ' योजनेचं काम सुरु
    #sangli #abpमाझा #abpmajha #marathinews #maharashtrapolitics Sangli Jat Water Scheme :...
    published: 11 Oct 2023
    Play in Full Screen
    0:55
    Maharashtra Sangli Jath Border Dispute : जत तालुका पाणी संघर्ष समितीकडून कर्नाटक सरकारचे आभार
    #ABPMajha #MarathiNews ABP Majha (ABP माझा) is a 24x7 Marathi news channel in India. The ...
    published: 02 Dec 2022
    Play in Full Screen

    Jat people

    The Jat people (Hindi pronunciation: [dʒaːʈ]) (also spelled Jatt and Jaat) are a traditionally agricultural community in Northern India and Pakistan. Originally pastoralists in the lower Indus river-valley of Sindh, Jats migrated north into the Punjab region, Delhi, Rajputana, and the western Gangetic Plain in late medieval times. Primarily of Hindu, Muslim and Sikh faiths, they now live mostly in the Indian States of Haryana, Punjab, Delhi, Rajasthan and Uttar Pradesh and the Pakistani provinces of Punjab and Sindh.

    The Jat community saw radical social changes in the 17th century, the Hindu Jats took up arms against the Mughal Empire during the late 17th and early 18th century. The Hindu Jat kingdom reached its zenith under Maharaja Suraj Mal of Bharatpur (1707–1763). The Jat community of the Punjab region played an important role in the development of the martial Khalsa Panth of Sikhism; they are more commonly known as the Jat Sikhs. By the 20th century, the landowning Jats became an influential group in several parts of North India, including Haryana, Punjab,Western Uttar Pradesh,Rajasthan, and Delhi. Over the years, several Jats abandoned agriculture in favour of urban jobs, and used their dominant economic and political status to claim higher social status.

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