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

Bindusara

Bindusara Maurya (r. c. 320–273 BCE) was the second emperor of the Maurya Empire. During his reign, the empire expanded southwards. He had two well-known sons, Susima and Ashoka, who were the viceroys of Taxila and Ujjain, respectively. The Greeks called him Amitrochates or Allitrochades – the Greek transliteration for the Sanskrit word Amitraghata "Slayer of enemies". He was also called Ajatashatru "Man with no enemies" in Sanskrit (not to be confused with Ajatashatru, son of Bimbisara, who ruled Haryanka Magadha from 491–461 BCE).

Life

Bindusara was the son of the first Mauryan Emperor, Chandragupta Maurya, and his Empress-Consort, Durdhara. His birth name was Simhasena. According to a legend mentioned by the Jains, Chandragupta's advisor Chanakya used to feed the emperor small doses of poison to build his immunity against possible poisoning attempts by enemies of the throne. One day, Chandragupta not knowing about the poison, shared his food with his pregnant wife, Durdhara, who was 7 days away from delivery. The empress not immune to the poison collapsed and died within few minutes. Chanakya entered the room the very time she collapsed, and to save the child in the womb, he immediately cut open the dead empress' womb and took the baby out. By that time a drop of poison had already reached the baby and touched its head due to which child got a permanent bluish spot (a "bindu") on his forehead. Thus, the newborn was named "Bindusara".

Podcasts:

  • Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern India

    Learn about Mauryan Emperor Bindusara and the brutal campaign in Southern India in this historical video. Discover the impact of the Mauryan empire on Southern India and the legacy left by Emperor Bindusara. Mauryan Empire reaches its maximum extent during Emperor Bindusara's rule. 0:00 Birth of Bindusara ; Chandragupta Maurya 01:59 Bindusara Conquers Deccan 03:21 Death of Acharya Chanakya and Subandhu 05:26 Mauryan conquest of Sothern India ; Chola king Illamjaetcenni 13:50 Bindusara's foreign relations 14:47 Ashoka Maurya Sources Used : 1. Pariśiṣtaparvan of Hemacandra {The Clever Adulteress and Other Stories: A Treasury of Jaina Literature} 2. Kauṭilya and the Arthaśāstra: a statistical investigation of the authorship and evolution of the text by Thomas R. Trautmann 3. Sastri, K. A...

    published: 08 Jun 2024
  • मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India

    मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India बिन्दुसार ( 298–273 ई.पू ) मौर्य राजवंश के राजा थे, जो चन्द्रगुप्त मौर्य के पुत्र थे। बिन्दुसार को अमित्रघात, सिंहसेन्, मद्रसार तथा अजातशत्रु वरिसार भी कहा गया है। बिन्दुसार महान मौर्य सम्राट अशोक के पिता थे। चन्द्रगुप्त मौर्य एवं दुर्धरा के पुत्र बिन्दुसार ने काफी बड़े राज्य का शासन संपदा में प्राप्त किया। उन्होंने दक्षिण भारत की तरफ़ भी राज्य का विस्तार किया। चाणक्य उनके समय में भी प्रधानमन्त्री बनकर रहे। बिन्दुसार के शासन में तक्षशिला के लोगों ने दो बार विद्रोह किया। पहली बार विद्रोह बिन्दुसार के बड़े पुत्र सुशीमा के कुप्रशासन के कारण हुआ। दूसरे विद्रोह का कारण अज्ञात है पर उसे बिन्दुसार के पुत्र अशोक ने दबा दिया। बिन्दुसार की मृत्यु 273 ईसा पूर्व (कुछ तथ्य 268 ईसा पूर्व की तरफ़ इशारा करते ...

    published: 18 Aug 2022
  • Habibi Bindusara 🤍 #siddharthnigam #bindusara #powerofsiddharthnigam

    published: 14 Jan 2022
  • The unknown story about Bindusara

    इतिहास में जय उसी की होती है जो विजयी हो। ये सत्य है, परंतु एक सत्य ये भी है कि इतिहास में कुछ ऐसे नायक भी हुए जो जय के योग्य तो हैं परंतु उनकी कीर्ति तो छोड़िए उनका उल्लेख तक नहीं किया गया। मौर्य शासन स्थापित करने वाले चन्द्रगुप्त मौर्य के बारे में सब परिचित हैं, एवं उसे शिखर तक ले जाने में सबसे महत्वपूर्ण भूमिका निभाने वाले अशोकवर्धन मौर्य अथवा सम्राट अशोक से भी कई परिचित हैं, परंतु इस बात से कौन परिचित है कि इस साम्राज्य को अक्षुण्ण रखने में एक अन्य व्यक्ति का भी हाथ था जिसकी कीर्ति कम ही गाई जाती है। पूरी जानकारी के लिए वीडियो देखें। इसी तरह की अन्य वीडियो देखने के लिए Subscribe करें TFI - History and Culture Join our Facebook page: @tfipost.in Join us on Twitter: @tfipost_in Join our Instagram page: @tfipost_in Join our telegram channel:- TFIPost- Hindi Subscribe to our Hindi edito...

    published: 13 Nov 2022
  • BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC

    BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC For PDF of this video - Download Bookstawa App : https://play.google.com/store/apps/details?id=co.loki.ylnop1 Ancient History Playlist: https://youtube.com/playlist?list=PLZfz5K8XpMW3eHK_-7gxmmKqNeEuyz1I6 Modern History Playlist: https://www.youtube.com/playlist?list=PLZfz5K8XpMW1BCazrkRFzS9NxCZVMiXcM Polity Playlist: https://youtube.com/playlist?list=PLZfz5K8XpMW2mGIuerMSMDc5LjeoAABjN For Polity Course - Download Bookstawa App [ ANDROID ] Bookstawa APK link - https://storage.googleapis.com/cp-prod-projb-pub/white_label_1.4.77/15Sep23/ylnop/production/whitelabel_ylnop/8269776081150461/app-release.apk Please go-through with the video https://youtu.be/x_SC82ZaYEc?si=XB2jT8iCQ_dBoEu6 to know how to use the APK file...

    published: 18 Jun 2022
  • Neetho Unte Chalu - Video Song | Bimbisara | Nandamuri Kalyan Ram | M.M. Keeravani | Vassishta

    Here is the video song of 'Neetho Unte Chalu' from 'Bimbisara' Starring Nandamuri Kalyan Ram, CatherIne Tresa, Samyuktha Menon, Warina Hussain, Vennela Kishore, Brahmaji, Srinivasa Reddy. Song Credits: Neetho Unte Chalu Singer: Mohana Bhogaraju, Sandilya Pisapati Music: M.M. Keeravani Lyrics: M.M. Keeravani Listen to 'Neetho Unte Chalu' from 'Bimbisara' on your favourite streaming platforms :- Gaana: https://bit.ly/3Q6mJb6 JioSaavn: https://bit.ly/3Jn3gAN Spotify: https://spoti.fi/3cWyu5M Resso: https://m.resso.com/ZSRj1Y3eN/ Wynk: https://wynk.in/u/0IAoy20rj Hungama: https://bit.ly/3OLtTAA Amazon Music: https://amzn.to/3oJoLCu Apple: https://apple.co/3blKqxo YouTube Music: https://bit.ly/3ShdkiP Movie Credits: Produced by : Hari Krishna.K Written & Directed by : Vassishta DOP : Chota ...

    published: 29 Aug 2022
  • Bindusara : Second Mauryan Emperor of India | Maurya Dynasty | Indian History

    #bindusara #mauryaempire #indianhistory #ashokathegreat

    published: 07 Jun 2022
  • Money| Siddharth Nigam - Bindusara

    published: 19 Oct 2021
  • दसरा मेळावा नारायणगड बीड

    दसरा मेळावा नारायणगड बीड येथे पोखरी येथील आराधी मंडळ यांनी गायलेले जबरदस्त गीत.

    published: 21 Oct 2024
  • Never Be the Same | Bindusar🤍💫 #siddharthnigam #bindusara #chandranandini #powerofsiddharthnigam

    Don't forget follow my IG @Oursiddharth_

    published: 28 Nov 2021
developed with YouTube
Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern India
15:20

Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern India

  • Order:
  • Duration: 15:20
  • Uploaded Date: 08 Jun 2024
  • views: 379090
Learn about Mauryan Emperor Bindusara and the brutal campaign in Southern India in this historical video. Discover the impact of the Mauryan empire on Southern India and the legacy left by Emperor Bindusara. Mauryan Empire reaches its maximum extent during Emperor Bindusara's rule. 0:00 Birth of Bindusara ; Chandragupta Maurya 01:59 Bindusara Conquers Deccan 03:21 Death of Acharya Chanakya and Subandhu 05:26 Mauryan conquest of Sothern India ; Chola king Illamjaetcenni 13:50 Bindusara's foreign relations 14:47 Ashoka Maurya Sources Used : 1. Pariśiṣtaparvan of Hemacandra {The Clever Adulteress and Other Stories: A Treasury of Jaina Literature} 2. Kauṭilya and the Arthaśāstra: a statistical investigation of the authorship and evolution of the text by Thomas R. Trautmann 3. Sastri, K. A. Nilakanta (1988). Age of the Nandas and Mauryas 4. Sthavir̂aval̂i charita, or, Pariśishtaparvan. Translated by Hermann Jacobi. 5. A History of Ancient and Early Medieval India: From the Stone Age to the 12th Century by Upinder Singh 6. A Brief History of India by Alain Daniélou 7. History of South India by K.A. Nilakanta Sastri 8. Beginnings of South Indian History by S. Krishnaswami Aiyangar 9. The Smile of Murugan: On Tamil Literature of South India by Kamil Zvelebil 10. Alagappa Universty : History of Tamil Nadu ( Beginning to1947), BA Semester V, by Narasimhan C Sekar, Naveen Vashishta. 11. Mookerji, Radhakumud (1966). Chandragupta Maurya and His Times 12. Sen, Sailendra Nath (1999). Ancient Indian History and Civilization 13. Talbert, Richard J. A.; Naiden, Fred S. (2017). Mercury's Wings: Exploring Modes of Communication in the Ancient World 14. Erskine, Andrew (2009). A Companion to the Hellenistic World 15. J. C. McKeown (2013). A Cabinet of Greek Curiosities: Strange Tales and Surprising Facts from the Cradle of Western Civilization 16. Athenaeus (of Naucratis) (1854). The Deipnosophists, or, Banquet of the learned of Athenaeus. Vol. III. 17. Irfan Habib; Vivekanand Jha (2004). Mauryan India 18. Srinivasachariar, M. (1974). History of Classical Sanskrit Literature. Music used : A Golden Apple - Jamie Christopherson, Tim Wynn, Richard Beddow King of Sparta - Jamie Christopherson, Tim Wynn, Richard Beddow The Judgement of Paris - Jamie Christopherson, Tim Wynn, Richard Beddow Hymn of battle - Jamie Christopherson, Tim Wynn, Richard Beddow Crossing the Aegean - Jamie Christopherson, Tim Wynn, Richard Beddow The Wrath of Achilles - Jamie Christopherson, Tim Wynn, Richard Beddow Olympus - Jamie Christopherson, Tim Wynn, Richard Beddow Follow us on Facebook : https://www.facebook.com/risingberunda Follow us on Twitter : https://twitter.com/Gandaberunda4 Follow us on Instagram : https://www.instagram.com/berundarising/ Support us on Patreon : https://www.patreon.com/gundaberunda #bindusara #mauryanempire #chandraguptamaurya #fyp #fypシ゚viral
https://wn.com/Fear_Mauryan_Emperor_Bindusara's_Brutal_Campaign_In_Southern_India
मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India
5:43

मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India

  • Order:
  • Duration: 5:43
  • Uploaded Date: 18 Aug 2022
  • views: 86381
मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India बिन्दुसार ( 298–273 ई.पू ) मौर्य राजवंश के राजा थे, जो चन्द्रगुप्त मौर्य के पुत्र थे। बिन्दुसार को अमित्रघात, सिंहसेन्, मद्रसार तथा अजातशत्रु वरिसार भी कहा गया है। बिन्दुसार महान मौर्य सम्राट अशोक के पिता थे। चन्द्रगुप्त मौर्य एवं दुर्धरा के पुत्र बिन्दुसार ने काफी बड़े राज्य का शासन संपदा में प्राप्त किया। उन्होंने दक्षिण भारत की तरफ़ भी राज्य का विस्तार किया। चाणक्य उनके समय में भी प्रधानमन्त्री बनकर रहे। बिन्दुसार के शासन में तक्षशिला के लोगों ने दो बार विद्रोह किया। पहली बार विद्रोह बिन्दुसार के बड़े पुत्र सुशीमा के कुप्रशासन के कारण हुआ। दूसरे विद्रोह का कारण अज्ञात है पर उसे बिन्दुसार के पुत्र अशोक ने दबा दिया। बिन्दुसार की मृत्यु 273 ईसा पूर्व (कुछ तथ्य 268 ईसा पूर्व की तरफ़ इशारा करते हैं)। बिन्दुसार को 'पिता का पुत्र और पुत्र का पिता' नाम से जाना जाता है क्योंकि वह प्रसिद्ध व पराक्रमी शासक चन्द्रगुप्त मौर्य के पुत्र एवं महान राजा अशोक के पिता थे। Our Other Videos - 👇👇 मौर्य साम्राज्य https://youtu.be/IWESYJm3GJM 👇👇 झेलम का युद्ध https://youtu.be/9Qcw1-9wBR0 👇👇 सिकंदर का आक्रमण https://youtu.be/Lzdhgkv12as 👇👇 मगध महाजनपद का इतिहास https://youtu.be/H8MnApJarCs 👇👇 बौद्ध धर्म का इतिहास https://youtu.be/-IMIEL6YyrM 👇👇 महाजनपद काल का इतिहास https://youtu.be/0OXxeWD3zcA 👇👇 उत्तर वैदिक काल का इतिहास https://youtu.be/PlnBPO4CWXY 👇👇 ऋग्वैदिक काल की सम्पूर्ण जानकारी https://youtu.be/wdXql-cTyDg 👇👇 सिंधु घाटी सभ्यता की सम्पूर्ण जानकारी https://youtu.be/wpFeAeOsXfU 👇👇 मोहनजोदारो नगर की जानकारी https://youtu.be/HqwQHkp6dYc 👇👇 लोथल नगर की जानकारी https://youtu.be/TWGifx4DFgI 👇👇 राखीगढ़ी का DNA विश्लेषण https://youtu.be/H_SbIwSHfW4 👇👇 सिनौली का रहस्य https://youtu.be/zwrt3n_Hm4I 👇👇 सिंधु घाटी सभ्यता का पतन कैसे हुआ https://youtu.be/40BZO7Mzvv0 👇👇 वैदिक सभ्यता part - 1 https://youtu.be/NILsqRvDurg 👇👇 हड़प्पा सभ्यता vs वैदिक सभ्यता https://youtu.be/228R2qzIMDY Your Queries - Historic India History Indian History mauryan empire maurya dynasty maurya bindusara bindusar son of chandragupt maurya सम्राट बिंदुसार मौर्य साम्राज्य history of bindusara bindusara history in hindi samrat bindusar Bindusara upsc bindusara history upsc mauryan empire upsc mauryan empire history life history of bindusara Maurya samrajya bindusaar kaun tha chandragupt maurya maurya samarajya maurya kaal Ancient History मौर्य सम्राट बिंदुसार का इतिहास #mauryanempire #bindusara #HistoricIndia Music - YouTube Library Metaphysik by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 licence. https://creativecommons.org/licenses/by/4.0/ Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400056 Artist: http://incompetech.com/ Copyright Disclaimer - Under Section 107 of the Copyright Act 1976, Allowance is made for "Fair Use" For purpose such as criticism, comment, News Reporting, Teaching, Scholarship, and research, Fair use is a use permitted by copyright statute that might otherwise be infringing, Non-profit, educational or personal use tips the balance in favour of fair use
https://wn.com/मौर्य_सम्राट_बिंदुसार_का_इतिहास_|_Bindusara_|_Mauryan_Empire_|_Maurya_Dynasty_|_Historic_India
Habibi Bindusara 🤍 #siddharthnigam #bindusara #powerofsiddharthnigam
0:17

Habibi Bindusara 🤍 #siddharthnigam #bindusara #powerofsiddharthnigam

  • Order:
  • Duration: 0:17
  • Uploaded Date: 14 Jan 2022
  • views: 215385
https://wn.com/Habibi_Bindusara_🤍_Siddharthnigam_Bindusara_Powerofsiddharthnigam
The unknown story about Bindusara
5:39

The unknown story about Bindusara

  • Order:
  • Duration: 5:39
  • Uploaded Date: 13 Nov 2022
  • views: 10019
इतिहास में जय उसी की होती है जो विजयी हो। ये सत्य है, परंतु एक सत्य ये भी है कि इतिहास में कुछ ऐसे नायक भी हुए जो जय के योग्य तो हैं परंतु उनकी कीर्ति तो छोड़िए उनका उल्लेख तक नहीं किया गया। मौर्य शासन स्थापित करने वाले चन्द्रगुप्त मौर्य के बारे में सब परिचित हैं, एवं उसे शिखर तक ले जाने में सबसे महत्वपूर्ण भूमिका निभाने वाले अशोकवर्धन मौर्य अथवा सम्राट अशोक से भी कई परिचित हैं, परंतु इस बात से कौन परिचित है कि इस साम्राज्य को अक्षुण्ण रखने में एक अन्य व्यक्ति का भी हाथ था जिसकी कीर्ति कम ही गाई जाती है। पूरी जानकारी के लिए वीडियो देखें। इसी तरह की अन्य वीडियो देखने के लिए Subscribe करें TFI - History and Culture Join our Facebook page: @tfipost.in Join us on Twitter: @tfipost_in Join our Instagram page: @tfipost_in Join our telegram channel:- TFIPost- Hindi Subscribe to our Hindi editorial arm: - @ThFrustratedIndian Subscribe to our entertainment channel: - @TFI - Entertainment Subscribe to our National-English editorial arm- @TFIPost About the channel वीर सावरकर ने अंग्रेज़ो से माफी मांगी? मर्यादा पुरुषोत्तम भगवान रामचन्द्र ने माता सीता को धरती में समाने के लिए विवश कर दिया? कर्ण सबसे बड़ा वीर और महादानवीर था? अशोक तो महान राजा था? और उससे भी महान था अकबर? औरंगजेब उतना भी बुरा नहीं था जितना हमें बताया जाता है और दे दी हमे आज़ादी बिना खड्ग बिना ढाल, साबरमती के संत तूने कर दिया कमाल? यही सब पढे हैं न इतिहास और संस्कृति के नाम पे? सब झूठ है, मिथ्यावादन है, फेक न्यूज़ है। ऐसी भ्रांतियों को फैलाने वालों का कपार फोड़ा जाएगा टीएफ़आई के “इतिहास और संस्कृति” चैनल पर। आप सबस्क्राइब कीजिये और घंटी दबाइए, इनका घंटा हम बजाएँगे। #acharyachanakya #bindusara #empiremaurya #chandraguptamaurya #history #culture #bharat #mughals #british #sanatandharma #sanatanculture #thefrustratedindian #tfihistoryandculture #youtube
https://wn.com/The_Unknown_Story_About_Bindusara
BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC
3:02

BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC

  • Order:
  • Duration: 3:02
  • Uploaded Date: 18 Jun 2022
  • views: 65946
BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC For PDF of this video - Download Bookstawa App : https://play.google.com/store/apps/details?id=co.loki.ylnop1 Ancient History Playlist: https://youtube.com/playlist?list=PLZfz5K8XpMW3eHK_-7gxmmKqNeEuyz1I6 Modern History Playlist: https://www.youtube.com/playlist?list=PLZfz5K8XpMW1BCazrkRFzS9NxCZVMiXcM Polity Playlist: https://youtube.com/playlist?list=PLZfz5K8XpMW2mGIuerMSMDc5LjeoAABjN For Polity Course - Download Bookstawa App [ ANDROID ] Bookstawa APK link - https://storage.googleapis.com/cp-prod-projb-pub/white_label_1.4.77/15Sep23/ylnop/production/whitelabel_ylnop/8269776081150461/app-release.apk Please go-through with the video https://youtu.be/x_SC82ZaYEc?si=XB2jT8iCQ_dBoEu6 to know how to use the APK file. Why APK ? Explained : https://youtu.be/SSnsy_lOsBI For Polity Course - Apple Devices If you want to take this course on Apple store then you need to search 'MyInstitute' App. Download this App and enter org code - 'YLNOP' . And thats it .. you can take any Bookstawa Course.
https://wn.com/Bindusara_|_Mauryan_Empire_By_Bookstawa_|_Ancient_History_For_Upsc
Neetho Unte Chalu - Video Song | Bimbisara | Nandamuri Kalyan Ram | M.M. Keeravani | Vassishta
5:04

Neetho Unte Chalu - Video Song | Bimbisara | Nandamuri Kalyan Ram | M.M. Keeravani | Vassishta

  • Order:
  • Duration: 5:04
  • Uploaded Date: 29 Aug 2022
  • views: 198732846
Here is the video song of 'Neetho Unte Chalu' from 'Bimbisara' Starring Nandamuri Kalyan Ram, CatherIne Tresa, Samyuktha Menon, Warina Hussain, Vennela Kishore, Brahmaji, Srinivasa Reddy. Song Credits: Neetho Unte Chalu Singer: Mohana Bhogaraju, Sandilya Pisapati Music: M.M. Keeravani Lyrics: M.M. Keeravani Listen to 'Neetho Unte Chalu' from 'Bimbisara' on your favourite streaming platforms :- Gaana: https://bit.ly/3Q6mJb6 JioSaavn: https://bit.ly/3Jn3gAN Spotify: https://spoti.fi/3cWyu5M Resso: https://m.resso.com/ZSRj1Y3eN/ Wynk: https://wynk.in/u/0IAoy20rj Hungama: https://bit.ly/3OLtTAA Amazon Music: https://amzn.to/3oJoLCu Apple: https://apple.co/3blKqxo YouTube Music: https://bit.ly/3ShdkiP Movie Credits: Produced by : Hari Krishna.K Written & Directed by : Vassishta DOP : Chota K Naidu Background Score : M. M. Keeravani Editor : Tammi Raju VFX Producer : Anil Paduri Colorist : Shiva Kumar BVR Songs Written & Composed by : MM Keeravani Art : Kiran Kumar Manne Stunts : Venkat & Ram krishan Dialogues : Vasudev Muneppagari Script Associates : Sreedhar Ganta & Nimmagadda Srikanth Lyrics : Ramajogayya Sastri, Sreemani, Varikuppala Yadagiri. Visual Effects : Advitha Creative Studios Choreography : Shobi, Ravhu, Vijay, Yashwath PRO: Vamsi Kaka Digital Marketing : First Show Label: Saregama India Limited, A RPSG Group Company Lyrics: PALLAVI Male : gunde daati gonthu daati Palikindedo vainam Moduvaarina manasulone Molichindedo pranam.. Aa kannullone gangai pongina aanadam… Kaalamtho parihaasam chesina sneham.. Poddulu daati, haddulu daati Jagamulu daati, yugamulu daati Cheyyandinchamandi oka paasam. Runapaasam… vidhi vilaasam Charanam - 1 Adagaale kaani, Edaina ichhe annayyanoutha pilavaale kaani, paliketi thodooneedayyipothaa neetho unte chaalu sarithoogavu saamraajyaalu raathri pagalu lede digulu tadise kanulu idivarakerugani premalo gaaramlo (chorus) Cheyyandinchamandi oka paasam. Runapaasam vidhi vilaasam!! Praanaalu isthanandi oka bandham runabandham Charanam- 2 Male : noraara velige navvulni nenu kallaara Chusa.. Reppallo odige kantipaapallo nannu nenu kalisaa … neetho unte chaalu …. Prathi nimasham o harivillu ! Raathri-pagalu lede gubulu Murise edalu idivarakerugani premalo.. Gaaramlo Chorus Pranaalu isthanandi oka paasam Runapaasam… vidhivilaasam … cheyyandinchamandi oka bandham Runabandham… Last pallavi Aatallone paatallone velisindedo swargam… Raaje nedu bantaipoyina raajyam neeke sontham…. To buy Carvaan, visit https://www.saregama.com/carvaan/telugu To buy virus free original tracks, visit https://www.saregama.com/musicstore Follow us on: YouTube:https://www.youtube.com/channel/saregamatelugu Facebook: http://www.facebook.com/Saregamatelugu Twitter: https://twitter.com/saregamasouth​​ #NeethoUnteChalu #Bimbisara #SaregamaTelugu #MMKeeravani
https://wn.com/Neetho_Unte_Chalu_Video_Song_|_Bimbisara_|_Nandamuri_Kalyan_Ram_|_M.M._Keeravani_|_Vassishta
Bindusara : Second Mauryan Emperor of India | Maurya Dynasty | Indian History
4:22

Bindusara : Second Mauryan Emperor of India | Maurya Dynasty | Indian History

  • Order:
  • Duration: 4:22
  • Uploaded Date: 07 Jun 2022
  • views: 6409
#bindusara #mauryaempire #indianhistory #ashokathegreat
https://wn.com/Bindusara_Second_Mauryan_Emperor_Of_India_|_Maurya_Dynasty_|_Indian_History
Money| Siddharth Nigam - Bindusara
0:12

Money| Siddharth Nigam - Bindusara

  • Order:
  • Duration: 0:12
  • Uploaded Date: 19 Oct 2021
  • views: 99057
https://wn.com/Money|_Siddharth_Nigam_Bindusara
दसरा मेळावा नारायणगड बीड
4:14

दसरा मेळावा नारायणगड बीड

  • Order:
  • Duration: 4:14
  • Uploaded Date: 21 Oct 2024
  • views: 96
दसरा मेळावा नारायणगड बीड येथे पोखरी येथील आराधी मंडळ यांनी गायलेले जबरदस्त गीत.
https://wn.com/दसरा_मेळावा_नारायणगड_बीड
Never Be the Same | Bindusar🤍💫 #siddharthnigam #bindusara #chandranandini #powerofsiddharthnigam
0:16

Never Be the Same | Bindusar🤍💫 #siddharthnigam #bindusara #chandranandini #powerofsiddharthnigam

  • Order:
  • Duration: 0:16
  • Uploaded Date: 28 Nov 2021
  • views: 86531
Don't forget follow my IG @Oursiddharth_
https://wn.com/Never_Be_The_Same_|_Bindusar🤍💫_Siddharthnigam_Bindusara_Chandranandini_Powerofsiddharthnigam
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern India
    15:20
    Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern Indiaremove from playlist
  • मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India
    5:43
    मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic Indiaremove from playlist
  • The unknown story about Bindusara
    5:39
    The unknown story about Bindusararemove from playlist
  • BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC
    3:02
    BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSCremove from playlist
  • Neetho Unte Chalu - Video Song | Bimbisara | Nandamuri Kalyan Ram | M.M. Keeravani | Vassishta
    5:04
    Neetho Unte Chalu - Video Song | Bimbisara | Nandamuri Kalyan Ram | M.M. Keeravani | Vassishtaremove from playlist
  • दसरा मेळावा नारायणगड बीड
    4:14
    दसरा मेळावा नारायणगड बीडremove from playlist
developed with YouTube
PLAYLIST TIME:

Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern India

Learn about Mauryan Emperor Bindusara and the brutal campaign in Southern India in this historical video. Discover the impact of the Mauryan empire on Southern India and the legacy left by Emperor Bindusara. Mauryan Empire reaches its maximum extent during Emperor Bindusara's rule. 0:00 Birth of Bindusara ; Chandragupta Maurya 01:59 Bindusara Conquers Deccan 03:21 Death of Acharya Chanakya and Subandhu 05:26 Mauryan conquest of Sothern India ; Chola king Illamjaetcenni 13:50 Bindusara's foreign relations 14:47 Ashoka Maurya Sources Used : 1. Pariśiṣtaparvan of Hemacandra {The Clever Adulteress and Other Stories: A Treasury of Jaina Literature} 2. Kauṭilya and the Arthaśāstra: a statistical investigation of the authorship and evolution of the text by Thomas R. Trautmann 3. Sastri, K. A. Nilakanta (1988). Age of the Nandas and Mauryas 4. Sthavir̂aval̂i charita, or, Pariśishtaparvan. Translated by Hermann Jacobi. 5. A History of Ancient and Early Medieval India: From the Stone Age to the 12th Century by Upinder Singh 6. A Brief History of India by Alain Daniélou 7. History of South India by K.A. Nilakanta Sastri 8. Beginnings of South Indian History by S. Krishnaswami Aiyangar 9. The Smile of Murugan: On Tamil Literature of South India by Kamil Zvelebil 10. Alagappa Universty : History of Tamil Nadu ( Beginning to1947), BA Semester V, by Narasimhan C Sekar, Naveen Vashishta. 11. Mookerji, Radhakumud (1966). Chandragupta Maurya and His Times 12. Sen, Sailendra Nath (1999). Ancient Indian History and Civilization 13. Talbert, Richard J. A.; Naiden, Fred S. (2017). Mercury's Wings: Exploring Modes of Communication in the Ancient World 14. Erskine, Andrew (2009). A Companion to the Hellenistic World 15. J. C. McKeown (2013). A Cabinet of Greek Curiosities: Strange Tales and Surprising Facts from the Cradle of Western Civilization 16. Athenaeus (of Naucratis) (1854). The Deipnosophists, or, Banquet of the learned of Athenaeus. Vol. III. 17. Irfan Habib; Vivekanand Jha (2004). Mauryan India 18. Srinivasachariar, M. (1974). History of Classical Sanskrit Literature. Music used : A Golden Apple - Jamie Christopherson, Tim Wynn, Richard Beddow King of Sparta - Jamie Christopherson, Tim Wynn, Richard Beddow The Judgement of Paris - Jamie Christopherson, Tim Wynn, Richard Beddow Hymn of battle - Jamie Christopherson, Tim Wynn, Richard Beddow Crossing the Aegean - Jamie Christopherson, Tim Wynn, Richard Beddow The Wrath of Achilles - Jamie Christopherson, Tim Wynn, Richard Beddow Olympus - Jamie Christopherson, Tim Wynn, Richard Beddow Follow us on Facebook : https://www.facebook.com/risingberunda Follow us on Twitter : https://twitter.com/Gandaberunda4 Follow us on Instagram : https://www.instagram.com/berundarising/ Support us on Patreon : https://www.patreon.com/gundaberunda #bindusara #mauryanempire #chandraguptamaurya #fyp #fypシ゚viral
15:20
Fear: Mauryan Emperor Bindusara's Brutal Campaign in Southern India
Learn about Mauryan Emperor Bindusara and the brutal campaign in Southern India in this hi...
published: 08 Jun 2024
Play in Full Screen
5:43
मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic India
मौर्य सम्राट बिंदुसार का इतिहास | Bindusara | Mauryan Empire | Maurya Dynasty | Historic I...
published: 18 Aug 2022
Play in Full Screen
0:17
Habibi Bindusara 🤍 #siddharthnigam #bindusara #powerofsiddharthnigam
published: 14 Jan 2022
Play in Full Screen
5:39
The unknown story about Bindusara
इतिहास में जय उसी की होती है जो विजयी हो। ये सत्य है, परंतु एक सत्य ये भी है कि इतिहास में...
published: 13 Nov 2022
Play in Full Screen
3:02
BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC
BINDUSARA | Mauryan Empire by Bookstawa | Ancient History for UPSC For PDF of this video ...
published: 18 Jun 2022
Play in Full Screen
5:04
Neetho Unte Chalu - Video Song | Bimbisara | Nandamuri Kalyan Ram | M.M. Keeravani | Vassishta
Here is the video song of 'Neetho Unte Chalu' from 'Bimbisara' Starring Nandamuri Kalyan R...
published: 29 Aug 2022
Play in Full Screen
4:22
Bindusara : Second Mauryan Emperor of India | Maurya Dynasty | Indian History
#bindusara #mauryaempire #indianhistory #ashokathegreat
published: 07 Jun 2022
Play in Full Screen
0:12
Money| Siddharth Nigam - Bindusara
published: 19 Oct 2021
Play in Full Screen
4:14
दसरा मेळावा नारायणगड बीड
दसरा मेळावा नारायणगड बीड येथे पोखरी येथील आराधी मंडळ यांनी गायलेले जबरदस्त गीत.
published: 21 Oct 2024
Play in Full Screen
0:16
Never Be the Same | Bindusar🤍💫 #siddharthnigam #bindusara #chandranandini #powerofsiddharthnigam
Don't forget follow my IG @Oursiddharth_
published: 28 Nov 2021
Play in Full Screen

Bindusara

Bindusara Maurya (r. c. 320–273 BCE) was the second emperor of the Maurya Empire. During his reign, the empire expanded southwards. He had two well-known sons, Susima and Ashoka, who were the viceroys of Taxila and Ujjain, respectively. The Greeks called him Amitrochates or Allitrochades – the Greek transliteration for the Sanskrit word Amitraghata "Slayer of enemies". He was also called Ajatashatru "Man with no enemies" in Sanskrit (not to be confused with Ajatashatru, son of Bimbisara, who ruled Haryanka Magadha from 491–461 BCE).

Life

Bindusara was the son of the first Mauryan Emperor, Chandragupta Maurya, and his Empress-Consort, Durdhara. His birth name was Simhasena. According to a legend mentioned by the Jains, Chandragupta's advisor Chanakya used to feed the emperor small doses of poison to build his immunity against possible poisoning attempts by enemies of the throne. One day, Chandragupta not knowing about the poison, shared his food with his pregnant wife, Durdhara, who was 7 days away from delivery. The empress not immune to the poison collapsed and died within few minutes. Chanakya entered the room the very time she collapsed, and to save the child in the womb, he immediately cut open the dead empress' womb and took the baby out. By that time a drop of poison had already reached the baby and touched its head due to which child got a permanent bluish spot (a "bindu") on his forehead. Thus, the newborn was named "Bindusara".

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: bindusara

  • 1

Most Viewed

×