- published: 07 Jan 2025
- views: 18149
'+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; })); }); -->
Jammu and Kashmir (i/ˈdʒæmuː ənd ˌkæʃˈmɪər, ˈdʒʌ-, ˈkæʃmɪər/) is a state in northern India. It is located mostly in the Himalayan mountains, and shares a border with the states of Himachal Pradesh and Punjab to the south. Jammu and Kashmir has an international border with China in the north and east, and the Line of Control separates it from the Pakistan-controlled territories of Azad Kashmir and Gilgit-Baltistan in the west and northwest respectively. The state has special autonomy under Article 370 of the Constitution of India.
A part of the erstwhile Princely State of Kashmir and Jammu, the region is the subject of a territorial conflict among China, India and Pakistan. The western districts of the former princely state known as Azad Kashmir and the northern territories known as Gilgit-Baltistan have been under Pakistani control since 1947. The Aksai Chin region in the east, bordering Tibet, has been under Chinese control since 1962.
Jammu and Kashmir consists of three regions: Jammu, the Kashmir Valley and Ladakh. Srinagar is the summer capital, and Jammu is the winter capital. The Kashmir valley is famous for its beautiful mountainous landscape, and Jammu's numerous shrines attract tens of thousands of Hindu pilgrims every year. Ladakh, also known as "Little Tibet", is renowned for its remote mountain beauty and Buddhist culture.
The history of Kashmir, or Cashmere, is intertwined with the history of the Indian subcontinent and the surrounding regions, comprising the areas of Central Asia, South Asia and East Asia. Today, it denotes a larger area that includes the Indian-administered state of Jammu and Kashmir (which consists of Jammu, the Kashmir Valley, and Ladakh), the Pakistan-administered territories of Kashmir and Gilgit–Baltistan, and the Chinese-administered regions of Aksai Chin and the Trans-Karakoram Tract.
In the first half of the 1st millennium, the Kashmir region became an important centre of Hinduism and later of Buddhism; later in the ninth century, Shaivism arose. Islamization in Kashmir took place during 13th to 15th century and led to the eventual decline of the Kashmir Shaivism in Kashmir. However, the achievements of the previous civilizations were not lost, but were to a great extent absorbed by the new Islamic polity and culture which gave rise to Modern Kashmir Sufi Mysticism. In 1339, Shah Mir became the first Muslim ruler of Kashmir, inaugurating the Salatin-i-Kashmir dynasty. For the next five centuries, Muslim monarchs ruled Kashmir, including the Mughals, who ruled from 1586 until 1751, and the Afghan Durrani Empire, which ruled from 1747 until 1819. That year, the Sikhs, under Ranjit Singh, annexed Kashmir. In 1846, after the Sikh defeat in the First Anglo-Sikh War, and upon the purchase of the region from the British under the Treaty of Amritsar, the Raja of Jammu, Gulab Singh, became the new ruler of Kashmir. The rule of his descendants, under the paramountcy (or tutelage) of the British Crown, lasted until 1947, when the former princely state became a disputed territory, now administered by three countries: India, Pakistan, and the People's Republic of China.
Jammu and Kashmir was, from 1846 until 1952, a princely state in the British Empire in India, and was ruled by Jamwal Rajput Dogra Dynasty. The state was created in 1846 after the First Anglo-Sikh War as per the Treaty of Amritsar. The East India Company annexed the Kashmir Valley,Ladakh, and Gilgit-Baltistan from the Sikhs, and then transferred it to Gulab Singh in return for an indemnity payment of 7,500,000 Nanakshahee Rupees.
At the time of the Indian independence, Maharaja Hari Singh, the ruler of the state, preferred to become independent and remain neutral between the successor dominions of India or the Pakistan. However, an uprising in the western districts of the State followed by an attack by raiders from the neighbouring Northwest Frontier Province, supported by Pakistan, put an end to his plans for independence. On 26 October 1947, the Maharaja signed the Instrument of Accession joining the Dominion of India in return for military aid. The western and northern districts presently known as Azad Kashmir and Gilgit-Baltistan passed to the control of Pakistan.
Katra or Katra Vaishno Devi, as it is popularly known, is a small town in Reasi district of the Indian state of Jammu and Kashmir situated in the foothills of the Trikuta Mountains, where the holy shrine of Vaishno Devi is located. It is located 42 km from the city of Jammu.
Katra is located at 32°59′N 74°57′E / 32.98°N 74.95°E / 32.98; 74.95. It has an average elevation of 875 metres (2,474 feet). There also been reports of possible oil reserves in the area
As of 2011 India census, Katra along with Ban-Ganga had a population of 9,008. Males constitute 52% of the population and females 48%. Katra has an average literacy rate of 70%, higher than the national average of 59.%: male literacy is 77%, and female literacy is 65%. In Katra, 14% of the population is under 6 years of age.
Kashmir (Kashmiri: كشهير kaśhīr, Urdu, Shina: کشمیر kaśmīr, कश्मीर, Hindi) is a geographical region in the north-west of the Indian subcontinent. Until the mid-19th century, the term Kashmir geographically denoted only the valley between the Great Himalayas and the Pir Panjal mountain range. Today, it denotes a larger area that includes the Indian administered territories of Jammu and Kashmir (which consists of Jammu, the Kashmir Valley, and Ladakh), the Pakistan administered territories of Azad Kashmir and Gilgit–Baltistan, and the Chinese-administered regions of Aksai Chin and the Trans-Karakoram Tract.
Although Jammu is part of the disputed Kashmir region, it is not geographically part of the Kashmir valley nor the Ladakh region. The Jammu Division is inhabited by the Dogra people who are historically, culturally, linguistically, and geographically connected with the Punjab region and the Pahari regions of the former Punjab Hills States that now comprise the state of Himachal Pradesh.
"Kashmir" is a song by the English rock band Led Zeppelin from their sixth album Physical Graffiti, released in 1975. It was written by Jimmy Page and Robert Plant (with contributions from John Bonham) over a period of three years with lyrics dating to 1973. The song became a concert staple, performed by the band at almost every concert after its release. The song has been described as one of Led Zeppelin's two most overtly progressive epics.
Page and Plant released a longer, live version, recorded with an Egyptian/Moroccan orchestra, on No Quarter: Jimmy Page and Robert Plant Unledded (1994) and continued to perform the song with an orchestra on their 1995 tour.
The song is more than eight (8) minutes long, which radio stations usually consider too long, but it still received radio plays because "Stairway to Heaven", which was almost as long, had become so popular.
The song is almost entirely built upon an ascending chromatic ostinato over a pedal drone that Page had first recorded in his home studio, using the same guitar tuning (DADGAD) as he used for "Black Mountain Side", "White Summer" and the unreleased "Swan-song". Page explained, "I had a sitar for some time and I was interested in modal tunings and Arabic stuff. It started off with a riff and then employed Eastern lines underneath."
Kashmir (1963 – after 1980) was an Irish-bred, French-trained Thoroughbred racehorse and sire, best known for winning the classic 2000 Guineas in 1966. Kashmir was one of the leading French-trained two-year-olds of 1965 when he won the Prix Robert Papin and was placed in both the Prix Morny and the Prix de la Forêt. In the following spring he won the Prix Djebel and then defeated twenty-four opponents in the 2000 Guineas. He was beaten in his two subsequent races and was retired to stud where he had considerable success as a sire of winners. When racing in Britain, the horse was known as Kashmir II.
Kashmir was bred in Ireland by Jane Levins Moore. His coat colour was variously described as being either "black" "bay" or "brown". He was sired by Moore's stallion Tudor Melody, the top-rated British two-year-old of his generation, and later a successful sire. His other progeny included Magic Flute (Coronation Stakes), Welsh Pageant (Queen Elizabeth II Stakes) and Tudor Music (July Cup). Kashmir's dam Queen of Speed won two minor races and also produced Nick of Time, the dam of the Ascot Gold Cup winner Erimo Hawk.
Jammu Kashmir: جموں کشمیر کی تازہ ترین خبریں | Latest News | CM Omar Abdullah | News18 Urdu #news18urdulive #kashmirnews18 #jammukashmirnews18 #urdunews18 #jknews18 News18 Urdu is one of India’s leading news channel in the Urdu language. Please subscribe to watch live and breaking news with the latest videos added every hour. Subscribe to our channel for the latest news updates: http://bit.ly/2QH4xqW Connect on Social Media: Follow Us on Twitter: https://twitter.com/news18urdu?lang=en Like Us on Facebook: https://www.facebook.com/News18Urdu/ Our Website: https://bit.ly/2Y4RDb9
Kashmir ki kali #youtubeshorts #shortsvideo #travelshorts #kashmir
Baramulla to Banihal Train Journey in Live Snowfall Jammu Kashmir Train Latest Update | USBRL Update businesses inquiry- [email protected] My New Channel Link:- https://youtube.com/@JourneyswithAKCasual-x7b?si=v964F6KQ8PyPzalQ Ahmedabad to Bhuj Vande Metro Journey | Rann of Kutch Festival | Namo Bharat Rapid Rail https://youtu.be/Cv-CP5FHnfw Most Exclusive Delhi Dehradun Expressway Coverage with Drone View | Opening Soon | Latest Update https://youtu.be/a6A5KEkTivE Brand New First Delhi -Prayagraj - Varanasi Most Luxurious Bus Journey with Food | Maha Kumbh 2025 https://youtu.be/c_twoi80eAo Manali Tourist Places | Manali Tour Budget | Atal Tunnel, Sissu | Manali Travel Guide | Manali https://youtu.be/4mosUEkFm4g Brand New First Delhi to Manali Volvo Bus Journey...
Kashmir in Winter | Kashmir Tourist Places | Top 5 places to visit in Kashmir | Kashmir Tour I hope this video will be helpful to make your Kashmir trip successful and you'll create lifelong memories at heaven on the earth. ------------------------------ PACKAGE COMPANY DETAILS: WAY4TRAVELS ADVENTURE 09582894295 09971894295 ( Ravi Chauhan) 09711707845 (Pankul) Domestic - Andaman , Kerala ,Kashmir , Himachal with spiti valley, Rajasthan, Uttarakhand, Ladakh, Goa with Road trip International - Dubai, Maldives, Thailand , Vietnam , Singapore ,Bali Specialist Email - [email protected] Company website- https://www.way4travels.com/ Best Packages: https://www.way4travels.com/india-trips Google profile - https://maps.app.goo.gl/kCsTDAjaT5qdT Instagram profile - https://instagram.com/way4t...
I hope you enjoyed the Kashmir series which contains videos of following popular places, - Gulmarg - Pahalgam - Sonmarg - Srinagar You can book your stay in government stay by below link, JKTDC: https://www.jktdc.co.in For Gulmarg Gondola ride, you can book your seat with below link, https://www.jammukashmircablecar.com You can visit and enjoy following places in Gulmarg, - Gulmarg Gondola - Phase 1 (Kondoor) - Phase 2 (Apharwat) - Golf Course - Shiv Temple Pahalgam have many places to explore, few are listed below, - Baisaran Valley (Mini Switzerland) - Aru Valley - Betab Valley - Chandanwari Sonmarh have most beautiful Himalayas views but you can explore following places, - Thajiwas Glacier - Zojila Pass (Zero Point) - Bartal Valley Srinagar is summer capital of Jammu & Kashmir uni...
Jammu kashmir: جموں کشمیر سے خاص خبر | Congress | National Conference | News18 Urdu#israel #kashmirnews18 #jammukashmirnews18 #urdunews18 News18 Urdu is one of India’s leading news channel in the Urdu language. Please subscribe to watch live and breaking news with the latest videos added every hour. Subscribe to our channel for the latest news updates: http://bit.ly/2QH4xqW Connect on Social Media: Follow Us on Twitter: https://twitter.com/news18urdu?lang=en Like Us on Facebook: https://www.facebook.com/News18Urdu/ Our Website: https://bit.ly/2Y4RDb9
Jammu Kashmir: جموں کشمیر کی تازہ ترین خبریں | Latest News | CM Omar Abdullah | News18 Urdu #news18urdulive #kashmirnews18 #jammukashmirnews18 #urdunews18 #jknews18 News18 Urdu is one of India’s leading news channel in the Urdu language. Please subscribe to watch live and breaking news with the latest videos added every hour. Subscribe to our channel for the latest news updates: http://bit.ly/2QH4xqW Connect on Social Media: Follow Us on Twitter: https://twitter.com/news18urdu?lang=en Like Us on Facebook: https://www.facebook.com/News18Urdu/ Our Website: https://bit.ly/2Y4RDb9
Kashmir full view Jammu And Kashmir tourism Kashmir valley Jammu And Kashmir union territory Jammu And Kashmir state Jammu And Kashmir election Jammu And Kashmir tour video Jammu Kashmir aerial view Kashmir snow Gulmarg tourist place Amarnath yatra Kashmir. contact: [email protected] Top 10 Biggest bus stations in India https://youtu.be/qqFtth52adI Top 10 Biggest and Busiest Railway Station in India https://youtu.be/54vRZ5bagls Jammu and Kashmir, a union territory of India (until October 31, 2019, a state), located in the northern part of the Indian subcontinent in the vicinity of the Karakoram and westernmost Himalayan mountain ranges. The territory is part of the larger region of Kashmir, Jammu and Kashmir, Popularly known as the "Paradise on Earth", Jammu and Kashmir are worl...
ஜம்மு காஷ்மீரில் நான் பார்த்த விசித்திரங்கள்! வெளிவராத காட்சி! Part 1 | Jammu: unrevealed scenes https://youtu.be/WgONDNPo1Is காஷ்மீர் பிராமணர்கள் அழிக்கப்பட்ட கதை | Documentry | Jammu Kashmir-Part 2 https://youtu.be/1EyRJFXMIig?si=WZhAuRmbXVpe-8EN காஷ்மீரில் எனது கசப்பான அனுபவம்! வெளிவராத காட்சி | Otherside of Kashmir | J&K Part 3 https://youtu.be/gOuQFnYTzq4 Jammu Kashmir vlogs , Jammu Kashmir vlogs Tamil , Tamil vlogs on Jammu Kashmir , Jammu Kashmir tour , ஜம்மு காஷ்மீர் சுற்றுலா , காஷ்மீர் சுற்றுலா , காஷ்மீர் சுற்றுலா இடங்கள் @ArchivesofHindustan
Can India Ever Get POK and Aksai Chin Back? | Geopolitics of Jammu and Kashmir Explained 👉 About This Video :- In This video i explained the geopolitical condition of POK and Aksai Chin. Do you know, currently around 3% area of sovereign india is actually not under control of india. Why pakistan occupied jammu and kashmir including gilgit baltistan and chinese occupied aksai chin are so important? Is there any possibilities for india to get back this regions...? Let's try to understand ✉️ For Any Query or Inquiry Contact at (Mail) :- [email protected] __________________________________ 📑 Timestamps :- 0:00 = Intro 2:23 = History of Jammu and Kashmir 3:25 = India China Border 4:29 = Aksai Chin Road 6:24 = Silk Routes 7:58 = India Central Asia Trade 8:41 = India Iran Chabahar Dea...
Why Kashmir remains one of the most militarized regions in the world. Become a Video Lab member! http://bit.ly/video-lab The dispute between India and Pakistan over Kashmir is one of the longest running conflicts. Ever since Britain left India in 1947 and hastily drew borders demarcating a Hindu-majority India and a Muslim-majority Pakistan, Kashmir, located right between the two, has been fervently claimed by both nations. India and Pakistan’s first war was fought over Kashmir’s status as the the newly independent countries were being formed. After over a year of bloody conflict the UN stepped in and brokered a ceasefire that drew a line down the middle of Kashmir and gave a portion of the territory to India and the remainder to Pakistan. This arrangement was meant to be temporary. O...
A TIMES NOW Exclusive, this documentary series gives an insight into the conflict-ridden region, showcasing facts as they are. The purely observational piece of storytelling is an honest attempt to showcase life in the Kashmir valley. Watch Kashmir The Story here. #Kashmir #KashmirTheStory #TimesNow Watch all videos here: Episode 1: https://www.timesnownews.com/videos/news-plus/series/kashmiriyat-kashmir-documentary-kashmir-the-story-episode-1/13715 Episode 2: https://www.timesnownews.com/videos/news-plus/series/rise-of-dogras-dogras-of-kashmir-documentary-kashmir-the-story-episode-2/13716 Episode 3: https://www.timesnownews.com/videos/news-plus/series/kashmir-partition-1947-documentary-kashmir-the-story-episode-3/13808 Episode 4: https://www.timesnownews.com/videos/news-plus/series/kashm...
A history of the Kashmir conflict. Read more about the Kashmir conflict here: https://econ.st/2NeRUE2 Click here to subscribe to The Economist on YouTube: https://econ.st/2GgNrtt A British Commission divided the territory into majority Muslim Pakistan and majority Hindu India. In the chaos that followed partition, 15 million people fled across the new borders and 500,000 died in rioting. Four border regions saw the worst of it: Sindh, Bengal, Punjab, and Jammu and Kashmir. Among India's 565 princely states only Jammu and Kashmir had a Hindu Maharajah ruling over a majority Muslim population. India claimed the Maharaja decided to join India. Pakistan disputed this. In October Pashtuns from Pakistan's Northwest Frontier Province invaded Kashmir with the support of Pakistan's government...
The 200-year history of Kashmir has been shown simply just in 3 minutes. The British took control of Kashmir, after the Anglo-Sikh war & then sold Kashmir for Rs 7.5 million to Gulab Singh. Hari Singh acceded Kashmir to India. During the Pak-India war on Kashmir, India presented the Kashmir issue to the United Nations. China occupied Aksai Chin after a war with India, and Pakistan handed over the Trans-Karakoram Tract to China. India occupied Siachin after the war with Pakistan. ------------------------------------------ NHN New Horizon YouTube ► https://www.youtube.com/c/NewHorizon2 Twitter ► https://twitter.com/NewHorizonTV Facebook ► https://web.facebook.com/NewHorizonsTV Instagram ► https://www.instagram.com/newhorizontv ------------------------------------- #newhorizon #kashmir
Kashmir has a violent past that pre-dates the partition of India and Pakistan. The Kashmir conflict - explained. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ #AlJazeeraEnglish #Kashmir #KashmirConflict
For centuries, Kashmir was home to Muslims and Hindus alike. Despite religious differences, historic discrimination, and episodes of violence, members of both faiths shared a common land, language, and culture there. This common identity, known as Kashmiriyat, united Kashmir’s residents with a sense of community and loyalty. In 1989, this unity was shattered with the outbreak of an insurgency that rages to this day. A wave of monstrous killings and brutal repression created the conditions for a massive exodus of nearly all of Kashmir’s Hindus. Today on A Day In History, we’ll discover what led to this mass movement of people. We’ll see how the Kashmir Valley unravelled and descended into violence, how public lynchings and sexual violence become the norm, and why this exodus of over 100,...
A concise summary of political and military events in the history of #Kashmir stretching back to 150 years, though largely focused on #KashmirsAccession to #India and the political events that followed. With this short video, one can truly get a grasp of events. History buffs will find enough intrigue to dig deeper and understand the minds of the men of the day. As always, there are various interpretations of events so do write in your counterpoints and enjoy the end limerick. Correction: The leader of the first battalion of Sikh Regiment that flew into Srinagar was led by Lt. Col. Dewan Ranjit Rai, not Ranjit Pai. Pakistan's Independence is mentioned as August 14, 1946, it should be 1947. Bisbo regrets the errors. Sources Avinash Mohananey How Kashmir was won from Mountbatten & Jinnah;...
[HISTORY OF KASHMIR]⚔🌏☠ In Nutshell || [INDO-PAK WAR]✊🥵⚔ #shorts #countryballs #geography #mapping #akhandbharat #nutshell #countryball #worldprovinces #history #empire #india Hi Guys I Am Anime Versus. I Make Countries Nutshell Video. If You Watched This Video And Think That You Want More Then Considering Subscribing, Its Free! I Love Making Countryballs!✌💀 Timestamps 0:00 Introduction 1:11 Creation Of Indo-Pak 4:48 Kashmir History 10:36 India And Israel's Plan 10:54 The End All Music Credits Goes To Kevin Macleod And Epidemic. Countryballs, the internet's most endearing and captivating phenomenon, have taken the world by storm with their quirky charm and humor! 🌍🇺🇸🇨🇳 Imagine a globe where countries aren't just boring shapes on a map but vibrant characters with unique per...
In a determined effort to restore the splendor of Kashmir's waterways, a coalition of women activists and administrative officers has turned their gaze towards revitalizing Jhelum river cruises. With a vision to unveil the rich tapestry of Srinagar, often hailed as the Venice of the East, these impassioned advocates embarked on a poignant journey. Recently, a historic voyage set sail from GPO, charting a course to Khankah Moula in downtown Srinagar. This symbolic voyage not only navigates the river's currents but also aims to rekindle the cultural heartbeat of a city steeped in timeless allure. #kashmir #news #srinagar #tourism #tourist #touristplace Visit our website : https://kashmirobserver.net/ Follow us on Facebook : https://www.facebook.com/kashmirobserver Follow us on Instagram ...
Watch the second part of Understanding Kashmir by clicking the link below. https://www.youtube.com/watch?v=HiS2xW3tXSw The Kashmir Issue - ever since independence, has been a sensitive and debatable topic for both India and Pakistan. Despite the emotions surrounding the topic - very few know about the history and struggle of Kashmir. What is Article 370 and Article 35A? Why have all parties failed to resolve Kashmir - even after India and Pakistan fighting several wars over it - despite the United Nations intervening - in spite of SEVEN DECADES having passed?? In Part 1 of Episode 100 - #TheDeshBhakt; we make an attempt to untangle and explain the Kashmir conflict. WARNING _ by no means this is a complete history of the state / just an attempt to explain a knotty issue / keeping facts...
Hey Everybody! In this video, we will be discussing the formation of India. How were the International Borders of Durand Line and Radcliffe Line Created. In this Video, mainly we will cover the objectives of the Mountbatten Plan, creation of Radcliffe line, hardships of Sir Cyril Radcliffe, setting up of Boundary Commission and its aftermath. We will also discuss the important task that was there just after Independence - i.e., the integration of more than 500 princely States. The problems with the princely states of Junagarh, Hyderabad and Jammu and Kashmir. ****************************************************** My Course on- Constitution: https://learn.finology.in/courses/legal/the-constitution-of-india-part-1 Current affairs: https://learn.finology.in/courses/legal/current-affairs-2018-...
Video Title : जम्मू कश्मीर का पूरा इतिहास शुरू से लेकर आज तक | Understanding Kashmir: History, Article 370 & Article 35a | History of Jammu Kashmir | Conflict of Kashmir Explained Language : Hindi ➤ Disclaimer ☛ The objective of this video is sharing of information. Please note our objective is not to hurt sentiments of any particular person, sect or religion. These are revelations, stories, anecdotes, mysteries, and information meant only for educational purposes and we hope they'd be taken likewise. The Broadcaster cannot be held accountable for authentication of content. Contact Us- [email protected] ➤ Subscribe to The Mystica Land/ यहाँ क्लिक कर सब्सक्राइब करें 👉 https://bit.ly/2HQe6zN ➤ Watch us on Facebook/ हमारा फेसबुक पेज 👉 https://www.facebook.com/Themysticalandhindi --...
Kashmir, one of the most strategic places in the world, where 3 powerful countries collide: India, Pakistan, and China. This region has been the epicenter of a brutal conflict over these disputed borders for decades. But, who really owns land? You see, When the United India or British India divided in 1947, this is how it was. Some princely states were given the choice to join either country. But the princely state of Jammu and Kashmir ruled by a Hindu monarch remained neutral at first. Later, fearing that the monarch would join India, Pakistan invaded the region. The monarch turned to India’s help in exchange to join India, which sparked the first indo-pakistan war. Finally in 1949, the UN Security Council intervened and brokered a ceasefire line called the Line of Control. Later in 1950,...
A concise summary of political and military events in the history of #Kashmir stretching back to 150 years, though largely focused on #KashmirsAccession to #India and the political events that followed. With this short video, one can truly get a grasp of events. History buffs will find enough intrigue to dig deeper and understand the minds of the men of the day. As always, there are various interpretations of events so do write in your counterpoints and enjoy the end limerick. Correction: The leader of the first battalion of Sikh Regiment that flew into Srinagar was led by Lt. Col. Dewan Ranjit Rai, not Ranjit Pai. Pakistan's Independence is mentioned as August 14, 1946, it should be 1947. Bisbo regrets the errors. Sources Avinash Mohananey How Kashmir was won from Mountbatten & Jinnah;...
#last #ruler #kashmir #britishindia #subcontinent #pakistan #india #history #indopakhistory #historyofpakistan #indianhistory #generalknowledge #ppsc #fpsc #spsc #pms #css
In this video, I want to convey the message that At the time of independence, India comprised two categories of political units, namely, the British provinces (under the direct rule of the British government) and the princely states (under the rule of native princes but subject to the paramountcy of the British Crown). The Indian Independence Act (1947) created two independent and separate dominions of India and Pakistan and gave three options to the princely states viz., joining India, joining Pakistan, or remaining independent. Of the 552 princely states situated within the geographical boundaries of India, 549 joined India and the remaining 3 (Hyderabad, Junagarh, and Kashmir) refused to join India. However, in course of time, they were also integrated with India–Hyd...
historically part of the princely state @dulalkarmalkar. @YouTube #youtube #youtubevideo #shorts #yt #video #viral #ytshort #hollywood #facts Pakistan-Occupied Kashmir (POK) was historically part of the princely state of Jammu and Kashmir, which is now an important component of India as a result of the decision to sign the Instrument of Accession. Still, it was illegally occupied by Pakistan in 1947. Azad (“Free”) Kashmir, established in 1947 after the partition of India, is neither a province nor an agency of Pakistan but has a government of its own that is regarded by Pakistan as “independent,” even though it is protected by and economically and administratively linked to Pakistan.17 By executing an Instrument of Accession under the provisions of the Indian Independence Act 1947,...
This is an audio version of the Wikipedia Article: Jammu and Kashmir (princely state) 00:01:17 1 Establishment 00:01:26 1.1 Jammu State 00:02:35 1.2 Gulab Singh 00:04:30 1.3 Acquisition of Ladakh 00:05:14 1.4 Anglo-Sikh War 00:08:04 1.5 Creation of Jammu and Kashmir 00:09:41 1.6 Territorial adjustments 00:11:15 1.7 Gilgit 00:13:09 2 Rulers 00:13:18 3 Administration 00:14:17 3.1 Prime Ministers 00:14:25 4 Geography 00:16:26 4.1 Transport 00:17:08 4.2 Flooding 00:17:31 5 Demographics 00:19:30 6 End of the princely state 00:23:09 7 See also Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understandi...
📝 Class Notes Available on our Web App , Link Below 👇 : http://app.skie.live ⭐️Join our Whatsapp Channel Now, Link Below 👇 https://chat.whatsapp.com/IV6IgaGzxKy8zCiYq39Gf3 https://chat.whatsapp.com/KLDbrsoFVbH2KgxV86cSMv https://chat.whatsapp.com/ETJRHJejadC9zJENFI1ipo 📣 Join our Telegram Channel for Class Doubts , Important Announcements & Much More . Link Below 👇 https://t.me/SKIE_Classes_Foundation Thank you so much for watching this lecture Do Like , Share and Subscribe Allah Bless you all ! Do Follow Subscribe us on :- Telegram :- https://t.me/SKIE_Classes_Foundation Facebook :- https://www.facebook.com/skie111?mibextid=LQQJ4d Instagram :- https://instagram.com/skie_classes?igshid=MzRlODBiNWFlZA== Youtube :- https://youtube.com/@SKIEClassesFoundation?si=K2OeroExYuocxUx- ...
Our country has been dealing with this menace of the India-Pak rift and the most affected remains Kashmir. We are all aware of the situation but what led to the current state, what is the reason that the two countries could not reach a mutual agreement even after 75 years of struggle. How did it emerge? These are some questions for which we are going to find answers in this video. Let's discuss. Kuku FM App Link: https://kukufm.sng.link/Apksi/iytr/31jp NR20 (for a lifetime 20% discount on our annual subscription of INR 399, effective price: INR 319) while another limited edition coupon is DUS50 (50% off, effective price INR 199, valid till only 17th October) Social Links: Instagram: https://www.instagram.com/nitishrajpute Twitter: https://www.twitter.com/nitishrajpute Facebook: https:...
Jammu and Kashmir (i/ˈdʒæmuː ənd ˌkæʃˈmɪər, ˈdʒʌ-, ˈkæʃmɪər/) is a state in northern India. It is located mostly in the Himalayan mountains, and shares a border with the states of Himachal Pradesh and Punjab to the south. Jammu and Kashmir has an international border with China in the north and east, and the Line of Control separates it from the Pakistan-controlled territories of Azad Kashmir and Gilgit-Baltistan in the west and northwest respectively. The state has special autonomy under Article 370 of the Constitution of India.
A part of the erstwhile Princely State of Kashmir and Jammu, the region is the subject of a territorial conflict among China, India and Pakistan. The western districts of the former princely state known as Azad Kashmir and the northern territories known as Gilgit-Baltistan have been under Pakistani control since 1947. The Aksai Chin region in the east, bordering Tibet, has been under Chinese control since 1962.
Jammu and Kashmir consists of three regions: Jammu, the Kashmir Valley and Ladakh. Srinagar is the summer capital, and Jammu is the winter capital. The Kashmir valley is famous for its beautiful mountainous landscape, and Jammu's numerous shrines attract tens of thousands of Hindu pilgrims every year. Ladakh, also known as "Little Tibet", is renowned for its remote mountain beauty and Buddhist culture.