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

Josip Broz Tito

Josip Broz Tito (Cyrillic: Јосип Броз Тито, pronounced [jǒsip brôːz tîto]; born Josip Broz; 7 May 1892 – 4 May 1980) was a Yugoslav revolutionary and statesman, serving in various roles from 1943 until his death in 1980. During World War II he was the leader of the Partisans, often regarded as the most effective resistance movement in occupied Europe. While his presidency has been criticized as authoritarian, Tito was "seen by most as a benevolent dictator" due to his economic and diplomatic policies. He was a popular public figure both in Yugoslavia and abroad. Viewed as a unifying symbol, his internal policies maintained the peaceful coexistence of the nations of the Yugoslav federation. He gained further international attention as the chief leader of the Non-Aligned Movement, working with Jawaharlal Nehru of India, Gamal Abdel Nasser of Egypt and Sukarno of Indonesia.

He was General Secretary (later Chairman of the Presidium) of the League of Communists of Yugoslavia (1939–80), and went on to lead the World War II Yugoslav guerrilla movement, the Partisans (1941–45). After the war, he was the Prime Minister (1944–63), President (later President for Life) (1953–80) of the Socialist Federal Republic of Yugoslavia (SFRY). From 1943 to his death in 1980, he held the rank of Marshal of Yugoslavia, serving as the supreme commander of the Yugoslav military, the Yugoslav People's Army (JNA). With a highly favourable reputation abroad in both Cold War blocs, Josip Broz Tito received some 98 foreign decorations, including the Legion of Honour and the Order of the Bath.

Podcasts:

  • Josip Broz ‘Tito’: Too Tough for Stalin

    Check my other channel Highlight History: https://www.youtube.com/channel/UCnb-VTwBHEV3gtiB9di9DZQ →Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 Visit our companion website for more: http://biographics.org Credits: Host - Simon Whistler Author - Arnaldo Teodorani Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Bernie Madoff: The Greatest Con in History https://youtu.be/E3hceCMoTQY Nikita Khrushchev – The Man Behind the Missile Crisis https://youtu.be/gjGLD8bx7Qo Source/Further reading: https://www.britannica.com/biography/Josip-Broz-Tito https://www.eurozine.com/tito-between-legend-and-thriller/ https://www.bing.com/videos/search?q=yo...

    published: 02 Jul 2019
  • Josip Broz Tito: Marshal, Leader, President | Tooky History

    Josip Broz Tito was the lifelong president of Socialist Federal Republic of Yugoslavia and was regarded as the key reason behind its liberation. Subscribe to our channel to view more videos like this one: https://goo.gl/Y9RH3v Like the video if you enjoyed it and leave us your thoughts in the comments below! In WW1, Josip Broz Tito was a member of the Austro-Hungarian army. He was a sergeant and fought on the Serbian front, before getting transferred to Russia, where he got captured. The years between the wars, Tito spent as a member of the Yugoslav communist party and would send reports to Russian NKVD. The reports resulted in more than 700 Yugoslav communists cleansed, as Broz took this as an opportunity to get rid of his rivals. WW2 saw Tito become the leader of the Yugoslav partisa...

    published: 21 Jun 2018
  • How Josip Broz Tito Formed The Fifth Rome

    #possiblehistory #ph #rome Possible History Discord: https://discord.gg/2ZRhQyngfH If you like the content please like, comment and subscribe, it helps smaller channels like mine to get noticed! If you want to support the channel you can go to my Patreon or become a member! You will get early access to video's and will be allowed to suggest priority video subjects! https://www.patreon.com/possiblehistory https://www.youtube.com/channel/UCGQNwLGt7oFYC7XpUNqqSQg/join https://www.buymeacoffee.com/PossibleHistory Possible Extra's a channel where we do not necessarily history related stuff, like podcasts and more! https://www.youtube.com/channel/UCce3hNrMze0AbmPqthUxdTQ/featured Gaming Channel: https://www.youtube.com/channel/UCOF-PtxuTjO_0bwQIcOS94Q Feel free to follow or join our social...

    published: 20 Jun 2023
  • Josip Broz Tito: Padre del Socialismo Yugoslavo

    ¡Sigue el canal de LNE en inglés!: www.youtube.com/@TheBrandNewEncyclopedia La vida de Josip Broz Tito. De las entrañas de los Balcanes brotó una figura que logró mantener vivo el anhelo histórico de los eslavos del sur de unificarse dentro de una sola nación. Fue un hombre que se le paró de frente a Stalin, a Hitler y a Churchill, y salió victorioso. Héroe de guerra hecho a sí mismo y padre del socialismo yugoslavo, un socialismo de corte nacionalista y pragmático que durante 35 años gobernó el variopinto mosaico que formaba la República de Yugoslavia, esa unión que congregaba a los pueblos de Croacia, Serbia, Eslovenia, Kosovo, Bosnia y Herzegovina, Macedonia del Norte y otros más. Hablamos de Josip Broz Tito. Pragmático con los anglosajones y desleal con el Kremlin Soviético, el primer...

    published: 19 Jun 2024
  • December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind

    December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind On December 4, 1943, General Josip Broz Tito as he became the head of the provisional communist government in Yugoslavia. He was the first communist leader to defy soviet hegemony. Under his leadership, the country became a founding member of the non-alignment movement. --- General Josip Broz Tito | Yugoslavia | Soviet | Communist | Firstpost | World News | Vantage | Palki Sharma #josipbroztito #yugoslavia #soviet #communist #firstpost #vantageonfirstpost #palkisharma #worldnews Vantage is a ground-breaking news, opinions, and current affairs show from Firstpost. Catering to a global audience, Vantage covers the biggest news stories from a 360-degree perspective, giving viewers a chan...

    published: 04 Dec 2023
  • Dan kada je vrisnuo Josip Broz Tito

    Švedska 1976. godine. Copyright : Javni Servis Srbije (RTS) YouTube distribution : KVZ Digital ZABRANJENO KOPIRANJE VIDEA NA DRUGE KANALE!

    published: 30 Sep 2013
  • Josip Broz Tito in World War 1 I WHO DID WHAT IN WW1?

    Josip Broz, later known as Tito, was one of the most controversial and important people of the 20th century. His political identity and his determination were built during his military service in the Austro-Hungarian Army where he had to fight in Serbia and in Galicia. » HOW CAN I SUPPORT YOUR CHANNEL? You can support us by sharing our videos with your friends and spreading the word about our work.You can also support us financially on Patreon: https://www.patreon.com/thegreatwar You can also buy our merchandise in our online shop: https://shop.thegreatwar.tv Patreon is a platform for creators like us, that enables us to get monthly financial support from the community in exchange for cool perks. » WHERE CAN I GET MORE INFORMATION ABOUT WORLD WAR I AND WHERE ELSE CAN I FIND YOU? W...

    published: 16 May 2016
  • Uz Maršala Tita - With Marshal Tito (Lyrics)

    Patreon: https://www.patreon.com/vladimirglenin A Yugoslav Partisan anthem dedicated to the leader of the partisans and future President of SFR Yugoslavia. The song was written by Vladimir Nazor and composed by Oskar Danon and is widely popular among former Yugoslav nostalgists.

    published: 23 Feb 2019
  • MARSHAL TITO INTERVIEWED

    (6 Mar 1952) Built beside the River Danube, the ancient city of Belgrade (modern Yugoslavia's Capital) presents a picture of particular interest, for it offers a picture of a glimpse of a country in Eastern Europe, which is to-day the focus of curiosity for Western eyes. Marshal Tito's friendlier attitude towards the West is well illustrated by an interview taken by a Movietone unit, specially admitted to Yugoslavia for the purpose. He answered questions put to him by Helen Fisher of United Press through an interpreter. Marshal Tito also spoke in English, which he had studiously learnt for the occasion. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.in...

    published: 21 Jul 2015
  • Stalin's Failed Assassination Attempts on Josip Broz Tito #shorts #history #stalin

    The Cold War rivalry between Joseph Stalin and Josip Broz Tito was a complex one - so complex that Stalin tried his hand at assassination attempts! It seems that his plans weren't successful though, as Tito warned him to stop sending people to kill me.

    published: 20 Jan 2023
Josip Broz ‘Tito’: Too Tough for Stalin
22:34

Josip Broz ‘Tito’: Too Tough for Stalin

  • Order:
  • Duration: 22:34
  • Uploaded Date: 02 Jul 2019
  • views: 3038336
Check my other channel Highlight History: https://www.youtube.com/channel/UCnb-VTwBHEV3gtiB9di9DZQ →Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 Visit our companion website for more: http://biographics.org Credits: Host - Simon Whistler Author - Arnaldo Teodorani Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Bernie Madoff: The Greatest Con in History https://youtu.be/E3hceCMoTQY Nikita Khrushchev – The Man Behind the Missile Crisis https://youtu.be/gjGLD8bx7Qo Source/Further reading: https://www.britannica.com/biography/Josip-Broz-Tito https://www.eurozine.com/tito-between-legend-and-thriller/ https://www.bing.com/videos/search?q=youtube+the+great+war+channel+tito&view=detail&mid=065A9B5AA3905DF8CEF8065A9B5AA3905DF8CEF8&FORM=VIRE https://www.eurozine.com/tito-between-legend-and-thriller/ https://www.tandfonline.com/doi/full/10.1080/1354571042000254746?scroll=top&needAccess=true https://www.warhistoryonline.com/world-war-ii/5-failed-missions-of-otto-skorzeny-hitlers-favorite-ss-commando.html https://www.theguardian.com/world/2005/feb/11/italy.secondworldwar https://ehistory.osu.edu/biographies/josip-broz-tito https://news.nationalgeographic.com/2017/08/goli-otok-political-prison-yugoslavia-croatia-video-spd/ http://news.bbc.co.uk/2/hi/programmes/from_our_own_correspondent/8189530.stm https://www.thedailybeast.com/did-tito-kill-stalin-a-new-book-on-the-theory https://www.historyanswers.co.uk/people-politics/10-bizarre-assassination-attempts-from-history/ https://www.goodreads.com/author/quotes/884352.Josip_Broz_Tito https://spartacus-educational.com/2WWtito.htm https://ehistory.osu.edu/biographies/josip-broz-tito https://www.goodreads.com/author/quotes/884352.Josip_Broz_Tito https://www.goodreads.com/author/quotes/884352.Josip_Broz_Tito https://www.independent.co.uk/news/world/europe/30-years-after-his-death-titos-legacy-lives-on-in-the-balkans-1960884.html?amp
https://wn.com/Josip_Broz_‘Tito’_Too_Tough_For_Stalin
Josip Broz Tito: Marshal, Leader, President | Tooky History
8:14

Josip Broz Tito: Marshal, Leader, President | Tooky History

  • Order:
  • Duration: 8:14
  • Uploaded Date: 21 Jun 2018
  • views: 685810
Josip Broz Tito was the lifelong president of Socialist Federal Republic of Yugoslavia and was regarded as the key reason behind its liberation. Subscribe to our channel to view more videos like this one: https://goo.gl/Y9RH3v Like the video if you enjoyed it and leave us your thoughts in the comments below! In WW1, Josip Broz Tito was a member of the Austro-Hungarian army. He was a sergeant and fought on the Serbian front, before getting transferred to Russia, where he got captured. The years between the wars, Tito spent as a member of the Yugoslav communist party and would send reports to Russian NKVD. The reports resulted in more than 700 Yugoslav communists cleansed, as Broz took this as an opportunity to get rid of his rivals. WW2 saw Tito become the leader of the Yugoslav partisans, the most effective resistance movement in Europe. After being victorious, Tito became president of the new Yugoslavia. Life standard in Yugoslavia was pretty high. Except for Tito’s political opponents – Broz used an island called Goli Otok as a prison. Tito, who didn’t see eye to eye with Stalin, started becoming distant from the Soviet Union. This resulted in Yugoslavia being kicked out of the Cominform and Stalin attempted multiple times to get rid of Tito. He failed every time and stopped once Tito told him he’d retaliate. During Josip Broz Tito’s presidency, Yugoslavia was respected throughout the world. Tito held great relations with both Eastern and Western Blocs and was one of the five founders of the Non-Aligned Movement. After his death, Tito’s funeral in Belgrade was the biggest state funeral at the time. Follow us on Twitter: https://goo.gl/WpwGLg Like us on Facebook: https://goo.gl/atnWNh Welcome to Tooky History, we’re making videos about people who led astonishing lives and who you probably don't know a lot about! On Thursdays, we’ll greet you with a new video about a new person. Hope you enjoy it! Music: “Exciting Trailer” Kevin MacLeod (incompetech.com) “Iron Horse” Kevin MacLeod (incompetech.com) “Mischief Maker” Kevin MacLeod (incompetech.com) “Moonlight Hall” Kevin MacLeod (incompetech.com) “The Builder” Kevin MacLeod (incompetech.com) “Peaceful Desolation” Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/ Sound effects: “rbh Applause 01 big” by RHumphries (https://freesound.org/people/RHumphries/)
https://wn.com/Josip_Broz_Tito_Marshal,_Leader,_President_|_Tooky_History
How Josip Broz Tito Formed The Fifth Rome
18:09

How Josip Broz Tito Formed The Fifth Rome

  • Order:
  • Duration: 18:09
  • Uploaded Date: 20 Jun 2023
  • views: 166354
#possiblehistory #ph #rome Possible History Discord: https://discord.gg/2ZRhQyngfH If you like the content please like, comment and subscribe, it helps smaller channels like mine to get noticed! If you want to support the channel you can go to my Patreon or become a member! You will get early access to video's and will be allowed to suggest priority video subjects! https://www.patreon.com/possiblehistory https://www.youtube.com/channel/UCGQNwLGt7oFYC7XpUNqqSQg/join https://www.buymeacoffee.com/PossibleHistory Possible Extra's a channel where we do not necessarily history related stuff, like podcasts and more! https://www.youtube.com/channel/UCce3hNrMze0AbmPqthUxdTQ/featured Gaming Channel: https://www.youtube.com/channel/UCOF-PtxuTjO_0bwQIcOS94Q Feel free to follow or join our social media platforms: https://www.reddit.com/r/PossibleHistory/ https://twitter.com/PossibleHistor1 https://discord.gg/2ZRhQyngfH https://www.instagram.com/possible_history0/ Most of our music by Beta Records. He's great, check him out! Link: https://goo.gl/peHHCX A lot of other music by Kevin McLoad. The Copyrightfree Music Creator https://www.youtube.com/c/KevinMacLeodArchive
https://wn.com/How_Josip_Broz_Tito_Formed_The_Fifth_Rome
Josip Broz Tito: Padre del Socialismo Yugoslavo
38:43

Josip Broz Tito: Padre del Socialismo Yugoslavo

  • Order:
  • Duration: 38:43
  • Uploaded Date: 19 Jun 2024
  • views: 176738
¡Sigue el canal de LNE en inglés!: www.youtube.com/@TheBrandNewEncyclopedia La vida de Josip Broz Tito. De las entrañas de los Balcanes brotó una figura que logró mantener vivo el anhelo histórico de los eslavos del sur de unificarse dentro de una sola nación. Fue un hombre que se le paró de frente a Stalin, a Hitler y a Churchill, y salió victorioso. Héroe de guerra hecho a sí mismo y padre del socialismo yugoslavo, un socialismo de corte nacionalista y pragmático que durante 35 años gobernó el variopinto mosaico que formaba la República de Yugoslavia, esa unión que congregaba a los pueblos de Croacia, Serbia, Eslovenia, Kosovo, Bosnia y Herzegovina, Macedonia del Norte y otros más. Hablamos de Josip Broz Tito. Pragmático con los anglosajones y desleal con el Kremlin Soviético, el primer presidente comunista en enfrentar a Stalin en vida, lideró con un guante diplomático en una mano y un fusil en la otra, un periodo de estabilidad y crecimiento económico y social sin igual en la República de Yugoslavia mientras lograba neutralizar las graves rivalidades internas de la región. El Mariscal Tito y su experimento de autogestión socialista se convirtieron en referente de los países no alineados que buscaban un rumbo distinto al vasallaje capitalista o soviético, sin embargo de su experimento hoy no queda más rastro que una mezcla de indiferencia, olvido, rechazo y la llamada yugonostalgia, un sentimiento de anhelo que algunos experimentan por la vieja Yugoslovia y su modo de vida. Hoy vamos a conocer un caso político sin comparación. Autor del guion: Alberto Zambrano y Reinaldo Carrillo. Narrador: Reinaldo Carillo Editor de video: Jonhangel Utrera Apóyanos en Patreon: https://www.patreon.com/lanuevaenciclopedia Síguenos en Instagram: https://www.instagram.com/lanuevaenciclopedia/ Suscríbete en el canal de Telegram de Reinaldo: https://t.me/LaNuevaEnciclopedia Para consultas sobre el canal: reinaldojosecv@gmail.com Capítulos: [00:00] Introducción [02:12] Un joven eslavo del sur [05:14] Tito entre guerras y revoluciones [08:43] Reino de Yugoslavia y ascenso de Tito [14:33] Líder del Ejército Popular de Liberación [21:31] Tito presidente de Yugoslavia [25:10] El socialismo yugoslavo: Tito contra Stalin [29:53] Tito, los no alineados y los Estados Unidos [34:36] La última etapa del Mariscal Tito Música de Scott Buckley.
https://wn.com/Josip_Broz_Tito_Padre_Del_Socialismo_Yugoslavo
December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind
0:39

December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind

  • Order:
  • Duration: 0:39
  • Uploaded Date: 04 Dec 2023
  • views: 33785
December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind On December 4, 1943, General Josip Broz Tito as he became the head of the provisional communist government in Yugoslavia. He was the first communist leader to defy soviet hegemony. Under his leadership, the country became a founding member of the non-alignment movement. --- General Josip Broz Tito | Yugoslavia | Soviet | Communist | Firstpost | World News | Vantage | Palki Sharma #josipbroztito #yugoslavia #soviet #communist #firstpost #vantageonfirstpost #palkisharma #worldnews Vantage is a ground-breaking news, opinions, and current affairs show from Firstpost. Catering to a global audience, Vantage covers the biggest news stories from a 360-degree perspective, giving viewers a chance to assess the impact of world events through a uniquely Indian lens. The show is anchored by Palki Sharma, Managing Editor, Firstpost. By breaking stereotypes, Vantage aims to challenge conventional wisdom and present an alternative view on global affairs, defying the norm and opening the door to new perspectives. The show goes beyond the headlines to uncover the hidden stories – making Vantage a destination for thought-provoking ideas. Vantage airs Monday to Friday at 9 PM IST on Firstpost across all leading platforms. ​ Subscribe to Firstpost channel and press the bell icon to get notified when we go live. https://www.youtube.com/@Firstpost Follow Firstpost on Instagram: https://www.instagram.com/firstpost/ Follow Firstpost on Facebook: https://www.facebook.com/firstpostin/ Follow Firstpost on Twitter: https://twitter.com/firstpost Follow Firstpost on WhatsApp: https://www.whatsapp.com/channel/0029Va6zOIrEQIamseyg762V
https://wn.com/December_4,_1943_General_Josip_Broz_Tito_Takes_Charge_As_Leader_Of_Yugoslavia_|_Firstpost_Rewind
Dan kada je vrisnuo Josip Broz Tito
0:21

Dan kada je vrisnuo Josip Broz Tito

  • Order:
  • Duration: 0:21
  • Uploaded Date: 30 Sep 2013
  • views: 1287755
Švedska 1976. godine. Copyright : Javni Servis Srbije (RTS) YouTube distribution : KVZ Digital ZABRANJENO KOPIRANJE VIDEA NA DRUGE KANALE!
https://wn.com/Dan_Kada_Je_Vrisnuo_Josip_Broz_Tito
Josip Broz Tito in World War 1 I WHO DID WHAT IN WW1?
7:24

Josip Broz Tito in World War 1 I WHO DID WHAT IN WW1?

  • Order:
  • Duration: 7:24
  • Uploaded Date: 16 May 2016
  • views: 324643
Josip Broz, later known as Tito, was one of the most controversial and important people of the 20th century. His political identity and his determination were built during his military service in the Austro-Hungarian Army where he had to fight in Serbia and in Galicia. » HOW CAN I SUPPORT YOUR CHANNEL? You can support us by sharing our videos with your friends and spreading the word about our work.You can also support us financially on Patreon: https://www.patreon.com/thegreatwar You can also buy our merchandise in our online shop: https://shop.thegreatwar.tv Patreon is a platform for creators like us, that enables us to get monthly financial support from the community in exchange for cool perks. » WHERE CAN I GET MORE INFORMATION ABOUT WORLD WAR I AND WHERE ELSE CAN I FIND YOU? We’re offering background knowledge, news, a glimpse behind the scenes and much more on: reddit: http://bit.ly/TheGreatSubReddit Facebook: http://bit.ly/WW1FB Twitter: http://bit.ly/WW1Series Instagram: http://bit.ly/ZpMYPL » CAN I EMBED YOUR VIDEOS ON MY WEBSITE? Of course, you can embed our videos on your website. We are happy if you show our channel to your friends, fellow students, classmates, professors, teachers or neighbours. Or just share our videos on Facebook, Twitter, Reddit etc. We are also happy to get your feedback, criticism or ideas in the comments. If you have interesting historical questions, just post them and we will answer in our OUT OF THE TRENCHES videos. You can find a selection of answers to the most frequently asked questions here: http://bit.ly/OOtrenches » CAN I SHOW YOUR VIDEOS IN CLASS? Of course! Tell your teachers or professors about our channel and our videos. We’re happy if we can contribute with our videos. If you are a teacher and have questions about our show, you can get in contact with us on one of our social media presences. » WHAT ARE YOUR SOURCES? Videos: British Pathé Pictures: Mostly Picture Alliance Background Map: http://d-maps.com/carte.php?num_car=6030&lang=en Literature (excerpt): Gilbert, Martin. The First World War. A Complete History, Holt Paperbacks, 2004. Hart, Peter. The Great War. A Combat History of the First World War, Oxford University Press, 2013. Hart, Peter. The Great War. 1914-1918, Profile Books, 2013. Stone, Norman. World War One. A Short History, Penguin, 2008. Keegan, John. The First World War, Vintage, 2000. Hastings, Max. Catastrophe 1914. Europe Goes To War, Knopf, 2013. Hirschfeld, Gerhard. Enzyklopädie Erster Weltkrieg, Schöningh Paderborn, 2004 Michalka, Wolfgang. Der Erste Weltkrieg. Wirkung, Wahrnehmung, Analyse, Seehamer Verlag GmbH, 2000 Leonhard, Jörn. Die Büchse der Pandora: Geschichte des Ersten Weltkrieges, C.H. Beck, 2014 If you want to buy some of the books we use or recommend during our show, check out our Amazon Store: http://bit.ly/AmazonTGW NOTE: This store uses affiliate links which grant us a commission if you buy a product there. » WHAT IS “THE GREAT WAR” PROJECT? THE GREAT WAR covers the events exactly 100 years ago: The story of World War I in realtime. Featuring: The unique archive material of British Pathé. Indy Neidell takes you on a journey into the past to show you what really happened and how it all could spiral into more than four years of dire war. Subscribe to our channel and don’t miss our new episodes every Thursday. » WHO IS REPLYING TO MY COMMENTS? AND WHO IS BEHIND THIS PROJECT? Most of the comments are written by our social media manager Florian. He is posting links, facts and backstage material on our social media channels. But from time to time, Indy reads and answers comments with his personal account, too. The Team responsible for THE GREAT WAR is even bigger: - CREDITS - Presented by : Indiana Neidell Written by: Indiana Neidell Director: Toni Steller & Florian Wittig Director of Photography: Toni Steller Sound: Toni Steller Sound Design: Marc Glücks Editing: Steven Roberts Motion Design: Philipp Appelt Research by: Indiana Neidell Fact checking: Markus Linke A Mediakraft Networks Original Channel Based on a concept by Spartacus Olsson Author: Indiana Neidell Visual Concept: Astrid Deinhard-Olsson Executive Producer: Spartacus Olsson Producer: Toni Steller & Florian Wittig Social Media Manager: Florian Wittig Contains licenced Material by British Pathé All rights reserved - © Mediakraft Networks GmbH, 2016
https://wn.com/Josip_Broz_Tito_In_World_War_1_I_Who_Did_What_In_Ww1
Uz Maršala Tita - With Marshal Tito (Lyrics)
1:23

Uz Maršala Tita - With Marshal Tito (Lyrics)

  • Order:
  • Duration: 1:23
  • Uploaded Date: 23 Feb 2019
  • views: 4215526
Patreon: https://www.patreon.com/vladimirglenin A Yugoslav Partisan anthem dedicated to the leader of the partisans and future President of SFR Yugoslavia. The song was written by Vladimir Nazor and composed by Oskar Danon and is widely popular among former Yugoslav nostalgists.
https://wn.com/Uz_Maršala_Tita_With_Marshal_Tito_(Lyrics)
MARSHAL TITO INTERVIEWED
3:28

MARSHAL TITO INTERVIEWED

  • Order:
  • Duration: 3:28
  • Uploaded Date: 21 Jul 2015
  • views: 302388
(6 Mar 1952) Built beside the River Danube, the ancient city of Belgrade (modern Yugoslavia's Capital) presents a picture of particular interest, for it offers a picture of a glimpse of a country in Eastern Europe, which is to-day the focus of curiosity for Western eyes. Marshal Tito's friendlier attitude towards the West is well illustrated by an interview taken by a Movietone unit, specially admitted to Yugoslavia for the purpose. He answered questions put to him by Helen Fisher of United Press through an interpreter. Marshal Tito also spoke in English, which he had studiously learnt for the occasion. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/1bd5eb9c6b794e4d921c068be964ebd3
https://wn.com/Marshal_Tito_Interviewed
Stalin's Failed Assassination Attempts on Josip Broz Tito #shorts #history #stalin
0:23

Stalin's Failed Assassination Attempts on Josip Broz Tito #shorts #history #stalin

  • Order:
  • Duration: 0:23
  • Uploaded Date: 20 Jan 2023
  • views: 149468
The Cold War rivalry between Joseph Stalin and Josip Broz Tito was a complex one - so complex that Stalin tried his hand at assassination attempts! It seems that his plans weren't successful though, as Tito warned him to stop sending people to kill me.
https://wn.com/Stalin's_Failed_Assassination_Attempts_On_Josip_Broz_Tito_Shorts_History_Stalin
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Josip Broz ‘Tito’: Too Tough for Stalin
    22:34
    Josip Broz ‘Tito’: Too Tough for Stalinremove from playlist
  • Josip Broz Tito: Marshal, Leader, President | Tooky History
    8:14
    Josip Broz Tito: Marshal, Leader, President | Tooky Historyremove from playlist
  • How Josip Broz Tito Formed The Fifth Rome
    18:09
    How Josip Broz Tito Formed The Fifth Romeremove from playlist
  • Josip Broz Tito: Padre del Socialismo Yugoslavo
    38:43
    Josip Broz Tito: Padre del Socialismo Yugoslavoremove from playlist
  • December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind
    0:39
    December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewindremove from playlist
  • Dan kada je vrisnuo Josip Broz Tito
    0:21
    Dan kada je vrisnuo Josip Broz Titoremove from playlist
  • Josip Broz Tito in World War 1 I WHO DID WHAT IN WW1?
    7:24
    Josip Broz Tito in World War 1 I WHO DID WHAT IN WW1?remove from playlist
  • Uz Maršala Tita - With Marshal Tito (Lyrics)
    1:23
    Uz Maršala Tita - With Marshal Tito (Lyrics)remove from playlist
  • MARSHAL TITO INTERVIEWED
    3:28
    MARSHAL TITO INTERVIEWEDremove from playlist
  • Stalin's Failed Assassination Attempts on Josip Broz Tito #shorts #history #stalin
    0:23
    Stalin's Failed Assassination Attempts on Josip Broz Tito #shorts #history #stalinremove from playlist
PLAYLIST TIME:

Josip Broz ‘Tito’: Too Tough for Stalin

Check my other channel Highlight History: https://www.youtube.com/channel/UCnb-VTwBHEV3gtiB9di9DZQ →Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 Visit our companion website for more: http://biographics.org Credits: Host - Simon Whistler Author - Arnaldo Teodorani Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Bernie Madoff: The Greatest Con in History https://youtu.be/E3hceCMoTQY Nikita Khrushchev – The Man Behind the Missile Crisis https://youtu.be/gjGLD8bx7Qo Source/Further reading: https://www.britannica.com/biography/Josip-Broz-Tito https://www.eurozine.com/tito-between-legend-and-thriller/ https://www.bing.com/videos/search?q=youtube+the+great+war+channel+tito&view=detail&mid=065A9B5AA3905DF8CEF8065A9B5AA3905DF8CEF8&FORM=VIRE https://www.eurozine.com/tito-between-legend-and-thriller/ https://www.tandfonline.com/doi/full/10.1080/1354571042000254746?scroll=top&needAccess=true https://www.warhistoryonline.com/world-war-ii/5-failed-missions-of-otto-skorzeny-hitlers-favorite-ss-commando.html https://www.theguardian.com/world/2005/feb/11/italy.secondworldwar https://ehistory.osu.edu/biographies/josip-broz-tito https://news.nationalgeographic.com/2017/08/goli-otok-political-prison-yugoslavia-croatia-video-spd/ http://news.bbc.co.uk/2/hi/programmes/from_our_own_correspondent/8189530.stm https://www.thedailybeast.com/did-tito-kill-stalin-a-new-book-on-the-theory https://www.historyanswers.co.uk/people-politics/10-bizarre-assassination-attempts-from-history/ https://www.goodreads.com/author/quotes/884352.Josip_Broz_Tito https://spartacus-educational.com/2WWtito.htm https://ehistory.osu.edu/biographies/josip-broz-tito https://www.goodreads.com/author/quotes/884352.Josip_Broz_Tito https://www.goodreads.com/author/quotes/884352.Josip_Broz_Tito https://www.independent.co.uk/news/world/europe/30-years-after-his-death-titos-legacy-lives-on-in-the-balkans-1960884.html?amp
22:34
Josip Broz ‘Tito’: Too Tough for Stalin
Check my other channel Highlight History: https://www.youtube.com/channel/UCnb-VTwBHEV3gti...
published: 02 Jul 2019
Play in Full Screen
8:14
Josip Broz Tito: Marshal, Leader, President | Tooky History
Josip Broz Tito was the lifelong president of Socialist Federal Republic of Yugoslavia and...
published: 21 Jun 2018
Play in Full Screen
18:09
How Josip Broz Tito Formed The Fifth Rome
#possiblehistory #ph #rome Possible History Discord: https://discord.gg/2ZRhQyngfH If yo...
published: 20 Jun 2023
Play in Full Screen
38:43
Josip Broz Tito: Padre del Socialismo Yugoslavo
¡Sigue el canal de LNE en inglés!: www.youtube.com/@TheBrandNewEncyclopedia La vida de Jo...
published: 19 Jun 2024
Play in Full Screen
0:39
December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost Rewind
December 4, 1943: General Josip Broz Tito Takes Charge as Leader of Yugoslavia | Firstpost...
published: 04 Dec 2023
Play in Full Screen
0:21
Dan kada je vrisnuo Josip Broz Tito
Švedska 1976. godine. Copyright : Javni Servis Srbije (RTS) YouTube distribution : KVZ Dig...
published: 30 Sep 2013
Play in Full Screen
7:24
Josip Broz Tito in World War 1 I WHO DID WHAT IN WW1?
Josip Broz, later known as Tito, was one of the most controversial and important people of...
published: 16 May 2016
Play in Full Screen
1:23
Uz Maršala Tita - With Marshal Tito (Lyrics)
Patreon: https://www.patreon.com/vladimirglenin A Yugoslav Partisan anthem dedicated to t...
published: 23 Feb 2019
Play in Full Screen
3:28
MARSHAL TITO INTERVIEWED
(6 Mar 1952) Built beside the River Danube, the ancient city of Belgrade (modern Yugoslavi...
published: 21 Jul 2015
Play in Full Screen
0:23
Stalin's Failed Assassination Attempts on Josip Broz Tito #shorts #history #stalin
The Cold War rivalry between Joseph Stalin and Josip Broz Tito was a complex one - so comp...
published: 20 Jan 2023
Play in Full Screen

Josip Broz Tito

Josip Broz Tito (Cyrillic: Јосип Броз Тито, pronounced [jǒsip brôːz tîto]; born Josip Broz; 7 May 1892 – 4 May 1980) was a Yugoslav revolutionary and statesman, serving in various roles from 1943 until his death in 1980. During World War II he was the leader of the Partisans, often regarded as the most effective resistance movement in occupied Europe. While his presidency has been criticized as authoritarian, Tito was "seen by most as a benevolent dictator" due to his economic and diplomatic policies. He was a popular public figure both in Yugoslavia and abroad. Viewed as a unifying symbol, his internal policies maintained the peaceful coexistence of the nations of the Yugoslav federation. He gained further international attention as the chief leader of the Non-Aligned Movement, working with Jawaharlal Nehru of India, Gamal Abdel Nasser of Egypt and Sukarno of Indonesia.

He was General Secretary (later Chairman of the Presidium) of the League of Communists of Yugoslavia (1939–80), and went on to lead the World War II Yugoslav guerrilla movement, the Partisans (1941–45). After the war, he was the Prime Minister (1944–63), President (later President for Life) (1953–80) of the Socialist Federal Republic of Yugoslavia (SFRY). From 1943 to his death in 1980, he held the rank of Marshal of Yugoslavia, serving as the supreme commander of the Yugoslav military, the Yugoslav People's Army (JNA). With a highly favourable reputation abroad in both Cold War blocs, Josip Broz Tito received some 98 foreign decorations, including the Legion of Honour and the Order of the Bath.

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