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

Charles II of England

Charles II (29 May 1630 – 6 February 1685) was monarch of the three kingdoms of England, Scotland, and Ireland.

Charles II's father, Charles I, was executed at Whitehall on 30 January 1649, at the climax of the English Civil War. Although the Parliament of Scotland proclaimed Charles II King on 5 February 1649, England entered the period known as the English Interregnum or the English Commonwealth, and the country was a de facto republic, led by Oliver Cromwell. Cromwell defeated Charles II at the Battle of Worcester on 3 September 1651, and Charles fled to mainland Europe. Cromwell became virtual dictator of England, Scotland and Ireland, and Charles spent the next nine years in exile in France, the Dutch Republic, and the Spanish Netherlands.

A political crisis that followed the death of Cromwell in 1658 resulted in the restoration of the monarchy, and Charles was invited to return to Britain. On 29 May 1660, his 30th birthday, he was received in London to public acclaim. After 1660, all legal documents were dated as if he had succeeded his father as king in 1649.

The Merry Monarch

The Merry Monarch (1842 after 1859) was a British Thoroughbred racehorse and sire. In a career that lasted from July 1844 to May 1846 he ran four times and won only one race. That race, however, was the 1845 Epsom Derby, in which he recorded an unexpected victory. After one race in 1846 he was retired to stud where he made no impression as a sire.

Background

The Merry Monarch was a bay horse bred by his owner, William Gratwicke of Ham Manor, near Angmering in Sussex. Gratwicke also bred his dam, The Margravine, who was a sister to the 1829 Derby winner Frederick. His sire, Slane, was runner-up in the Ascot Gold Cup and, thanks largely to The Merry Monarch's Derby win, was Champion sire in 1845.

The Merry Monarch was sent into training with John "Daddy" Forth who, at the age of sixty, had trained and ridden Frederick in the Derby. Gratwicke's horses were based at Goodwood at a stable owned by the Duke of Richmond. Following a disagreement with the Duke, Gratwicke moved his horses to Newmarket, Suffolk.

The Merry Monarch (play)

The Merry Monarch is an 1890 comic opera that debuted at the Broadway Theatre in New York City. It is an English adaptation of L'étoile by J. Cheever Goodwin, with new music by Woolson Morse.

History

Presented by actor-manager Francis Wilson and his company, which also featured Marie Jansen, the play debuted on August 18, 1890, and ran for 49 performances, through October 4. Though this was not considered a long run for the time, the show was turning large profits, and crowds were being turned away from every performance. The New York Times reported on September 29 that the play was sure to gross at least $87,000 during the run, "the largest amount by many thousands ever taken at the theatre in the same period at regular prices." But the theatre had other contractual engagements that prevented a longer run, and it was announced that the production would return the following fall. The play immediately went on the road, also playing to packed houses. The play returned after the long run of Wang concluded, and ran from October 5 through December 26, 1891, for 84 more performances. On the second run, a young Lulu Glaser served as the understudy for star Marie Jansen. It may have run longer, but Wilson was anxious to bring out his next play The Lion Tamer, which immediately followed.

Podcasts:

  • A Brief History of King Charles II 1660-1685

    A brief outline of the life and reign of King Charles II 1660-1685, in under 7 minutes. For further in depth knowledge on King Charles II, I can highly recommend the book by Lady Antonia Fraser. https://amzn.to/3mBj4Jg

    published: 16 Apr 2023
  • Charles II & The Stuart Restoration Documentary

    For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles The script for this video has been checked with Plagiarism software and scored 3% on Grammarly. In academia, a score of below 15% is considered good or acceptable. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purch...

    published: 31 Jul 2023
  • Why did England restore its Monarchy after its Civil War? (Short Animated Documentary)

    A lot of people in England (as well as Scotland and Ireland) went to a lot of trouble to remove King Charles I and turn the country into a republic. But a mere eleven years after Charles' appointment with a headsmen and military rule, Charles' son was back and on the throne. So why did they bring them back and unlike the Netherlands just continue without a monarchy? To find out watch this short and simple animated history documentary. A special thanks to my patrons below: Lukáš Houdek thypthon Jens Koch-Nommensen Øystein Alsaker Sergio M. Vela Emil Świderek Eclipse Armaan Bath Gin Aldeguer Dennis Vandeban robert lalonde Brendan W Mathias.C Michael Kram Hasmuffin CharÉTS Franco La Bruna Don Bonnigan Southside Mitch Justin Kubusch Adam Barrett John Bradley chaulk JakeBak0905 Heath Roberts...

    published: 09 May 2023
  • King Charles II of England, Scotland & Ireland dissolves Parliament

    Charles II: The Power and the Passion Directed by Joe Wright Produced by Kate Harwood Written by Adrian Hodges Starring Rufus Sewell Martin Turner Ian McDiarmid Music by Robert Lane Cinematography Ryszard Lenczewski Edited by Paul Tothill Distributed by British Broadcasting Corporation Release date 16 November - 7 December 2003 Running time 235 min Language English

    published: 22 Dec 2016
  • A Brief History Of Charles II - Charles II Of England

    A brief history of King Charles II of England. Time Stamps 0:00 Intro 0:52 An Early Life Of War 16:46 A King With No Kingdom 35:39 A King Restored 50:11 The Flames Of War 1:01:50 Beware The Heir 1:18:07 The Death Of Charles II Attribution Videos All videos not notated below were collected through royalty free websites and require no attribution. Websites include Pexels & Pixabay & Videvo Pen Writing - Videezy - Free Stock Footage http://www.videezy.com/ Photos All pictures were collected under creative commons license, public domain, royalty free websites or with permission from copyright holders. Any photos not notated below were collected via public domain. If there is an error in this, please contact me and I will adjust accordingly as it has been done unintentionally. St J...

    published: 25 Dec 2022
  • Charles ll: The King of Bling Song 🎶 | Slimy Stuarts | Horrible Histories

    It's Charles ll, the king who's the king of bling, liked spaniels, and knew where the party was always at. Subscribe for more Horrible Histories: http://bit.ly/HorribleHistoriesSubscribe Get more episode of Horrible Histories as well as all the extras on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b00sp0l8/horrible-histories #HorribleHistories is a hit #CBBC show that explores the side of history that they don’t teach you about in school! From the Rotten Romans, Vicious Vikings and Awful Egyptians to the Slimy Stuarts and Terrible Tudors, Horrible Histories covers the funniest, yuckiest and most gruesome bits of history for kids. Watch more: Horrible Histories Compilations: https://bit.ly/3arcr0I Horrible Histories Sketches and Parodies: https://bit.ly/2JkklNO Horrible Histori...

    published: 03 Jul 2020
  • Charles II, the Restoration of the Monarchy and Windsor Castle

    In this video made with and for the Royal Collection Trust, Chloe Storer explores how, after 11 years of Republican rule, Charles II restored the majesty and authority of the monarchy.

    published: 15 Oct 2021
  • Charles II of England - The King who Restored the English Monarchy (fixed)

    In this video we will see the story of Charles II of England, the monarch who restored the English monarchy. See U in History #SeeUinHistory #History

    published: 22 Jan 2024
  • สกอตแลนด์ ภายใต้การปกครองของ เจ้าผู้อารักขาแห่งเครือจักรภพ | ประวัติศาสตร์สกอตแลนด์ ตอนที่ 18

    ในช่วงกลางศตวรรษที่ 17 สกอตแลนด์และอังกฤษต่างเผชิญกับความท้าทายทางการเมืองและสังคมที่รุนแรง การเผชิญหน้าระหว่างกษัตริย์และรัฐสภาในสงครามกลางเมืองที่ทำให้ทั้งสกอตแลนด์ และอังกฤษต้องตกอยู่ในสถานการณ์ที่ยากลำบาก และสำหรับสกอตแลนด์ในช่วงเวลานั้นเป็นประเทศที่มีวัฒนธรรมและประเพณีที่แตกต่างจากอังกฤษอย่างชัดเจน แม้จะมีความสัมพันธ์อันแน่นแฟ้นระหว่างสองประเทศในระดับการเมืองและศาสนา แต่ความเป็นสกอตแลนด์ที่มีเอกลักษณ์เฉพาะตัวก็ทำให้เกิดความตึงเครียดในหลายมิติ Oliver Cromwell เป็นบุคคลสำคัญที่ก้าวขึ้นมามีบทบาทในช่วงเวลานี้ เขาเป็นผู้บัญชาการทหารที่สามารถควบคุมสถานการณ์ในอังกฤษและสกอตแลนด์ได้ด้วยความแข็งแกร่งและความสามารถในการนำทัพของเขา Cromwell ไม่เพียงแต่เป็นผู้นำกองทัพที่ชนะสงครามกลางเมืองอังกฤษและนำไปสู่การประหารชีวิต Charles I ในปี 1649 แต่เขายังเป็นบุคคลที่สามารถพลิกโฉมการเมืองของทั้งเกาะบริเตน ...

    published: 26 Aug 2024
  • Charles II: The Merry Monarch

    Check out NordVPN and get 4 months EXTRA on a 2-year plan by going to https://nordvpn.com/bio. It’s risk-free with Nord’s 30-day money-back guarantee! → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out our other YouTube Channels: Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw TopTenz: https://www.youtube.com/user/toptenznet Check out Karl's YouTube Channels: Fact Fiend: https://www.youtube.com/@UCaR-e8ComPih10DqPi3sdWg Wikiweekends: https://www.youtube.com/@UCtrzkwlnKfS9knQ-zuwYBLQ Untitled Side Channel: https://www.youtube.com/@UCLJvIXTMM7bjZ5-ju8xckJg Further Reading: https://www.nam.ac.uk/explore/british-civil-wars https://scottishhistorysociety.com/the-national-covenant-1637-...

    published: 20 Oct 2023
developed with YouTube
A Brief History of King Charles II 1660-1685
6:32

A Brief History of King Charles II 1660-1685

  • Order:
  • Duration: 6:32
  • Uploaded Date: 16 Apr 2023
  • views: 11537
A brief outline of the life and reign of King Charles II 1660-1685, in under 7 minutes. For further in depth knowledge on King Charles II, I can highly recommend the book by Lady Antonia Fraser. https://amzn.to/3mBj4Jg
https://wn.com/A_Brief_History_Of_King_Charles_Ii_1660_1685
Charles II  & The Stuart Restoration Documentary
1:11:11

Charles II & The Stuart Restoration Documentary

  • Order:
  • Duration: 1:11:11
  • Uploaded Date: 31 Jul 2023
  • views: 145319
For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles The script for this video has been checked with Plagiarism software and scored 3% on Grammarly. In academia, a score of below 15% is considered good or acceptable. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purchased with commercial rights from online media archives. #Biography #History #Documentary
https://wn.com/Charles_Ii_The_Stuart_Restoration_Documentary
Why did England restore its Monarchy after its Civil War? (Short Animated Documentary)
3:10

Why did England restore its Monarchy after its Civil War? (Short Animated Documentary)

  • Order:
  • Duration: 3:10
  • Uploaded Date: 09 May 2023
  • views: 1216442
A lot of people in England (as well as Scotland and Ireland) went to a lot of trouble to remove King Charles I and turn the country into a republic. But a mere eleven years after Charles' appointment with a headsmen and military rule, Charles' son was back and on the throne. So why did they bring them back and unlike the Netherlands just continue without a monarchy? To find out watch this short and simple animated history documentary. A special thanks to my patrons below: Lukáš Houdek thypthon Jens Koch-Nommensen Øystein Alsaker Sergio M. Vela Emil Świderek Eclipse Armaan Bath Gin Aldeguer Dennis Vandeban robert lalonde Brendan W Mathias.C Michael Kram Hasmuffin CharÉTS Franco La Bruna Don Bonnigan Southside Mitch Justin Kubusch Adam Barrett John Bradley chaulk JakeBak0905 Heath Robertson Ethan Person Leonard Frank His Empyreal Illuminance The Supreme High Priest Kalynx DVoid sharpie660 Paul Munro Martha Grondin Sean D. Nuukov Nathan Mendelsohn Emperor Kane Mario Peshev Brooks Woolson Harley Raptopoulos Jane Sumpter Piotr Wojnowski Christopher Godfrey Aaron Conaway Shauna K Korix Riylo Philip Yip Mario Mejia Andreas Mosand Alex Teplyakov Steven Gibson Roman Kynčl Manny F Nolan Peale Phillip Gathright Erik Hare Tony Belmonte Jack Nelson Joshua Schneider Sean Uzar Phoenix Fats Andrew F John Orr Vance Christiaanse Evan Ellingson Jamie van Brewen D. Mahlik Travis Mount tegsirat Contdoko12 Nicholas Menghini Katie Flinn Ron Johnson Jacob Zachs Dr. Schtnizel zockotron Michael Galloway Nick Macarius GrokThis Jose Recinto Bernardo Cavalcanti Arthur Hosey Jr. Angel Aguiñaga Tactical_Jackal Duke Thomas McGraw Sahni Peter Marino ein-veh Matthew Toles Konstantin Bredyuk Serius_Loyola Allen Rines mgnesium.poetry John Garcia MGS2600 Alan Romero khaki enthusiast Sebastian Mayor Leena Al-Souki HelloAgain Dullis Chase Labiste Zachary Pascalar Joe DeVito Ciege Engine Andrew Patane blaZzinG_FurY Bradley Backoff Vilena5 Justin Short Tim Stone Tino Jason Vandeventer Florian Mäder george tyler Joseph Hutchins Duane Bridges Aaron Larrow Anthony McCann Liquid Chief Chris Weisel William Adderholdt Ben Drums 24 Spencer DeRosier Clayton Schuman KNSTRKTVST Patrick Crowne ThePalestRose Windischgraetz No way Patty Culp Nathan Ngumi Curt Helmerich C. C. C. Joel Wasserman ZCoupon bas mensink SketerK Tim Sweeney Andrew Niedbala Tim Stumbaugh Logical Insanity Hexapuma Tyler Jenkins Warren Rudkin ARandomPaperClip Burt Clothier James Andrei Listochkin Bren Ehnebuske Jeff Sharon Oliver Jenner alexccg Perry Gagne Vegard Tønnessen Ethan Harlow Joseph Reinsch Matt Reed Bodo Nuber Chach Jason Gould Bartosz Zasada Matt Busch Matthew Ward Ahmed Roshdi Ned Burke Tall Jeff Yared Cristiano Colm Byrne Cade Summers Romney Manassa Juan Castillo Valentyn kevinh Alen Magdalena Reinberg-Leibel Mars Project BattleGoat Studios Geoffrey Sparrow Stefan Møller SirAlpaka Emily Glover-Wilson Clay Carroll Franklin Azul Bravestrong Rob Rollins Steve Bonds Robin! Melissa Prober Mark Littlehale nullptr Richard Wolfe Harrison Wiener Anthony Uk Brian Giordano Jonny Minogue Jeffrey Schneider Carl Blanton William Clark Moraxian Mik Scheper Juan Benet Colonel Oneill Hiro P David Spellmeyer Yuichiro Kakutani JT96 YugiJitsu Games pdswanfleet Sethars Igor Stavchanskiy Joseph Kerckhoff I'm Not In The Description Alex G. George Buce Donald Weaver Ryan Haber Mark Ploegstra Charles Doolittle Hunter Bayliss Tristan Kreller Aeryn and Lisa Toland T. c. north Dr. Howard Dr. Fine Dr. Howard Wolf James R DeVries Isabel Harrison Dustin Koellhoffer Oriki Heytun Thomas Wang Tom Ebert Roko Lisica Eric Askins LambOfLeg Kishan Nair Doug MacLean Sean Long John Gross-Whitaker Zachary Oertel Kevin Phoenix Sara Birnbaum Dan W Dutchball Animations Kirk Hoffman Tranier Bocaj Robert Brockway Shakira Graham Lech Duraj Seth Reeves Peter Konieczny Colm Boyle 0_DannyBoy George Caponera biohazardgamer Nathan Snyder Will Sullivan AltHistoryConjectures Dan Reiher Ian M Dr. Sarno Kinfe85 Miky Hidalgo Morriss Ali Sadighian Matthew O'Connor Dexter_McAaron Andrew Sever Adrian Marine Christopher S Nelson Jonah Baloney Lindorien Paul McGee João Santos Abdallah Al-Ammari Daniel O'Reilly Typhoon2401 blei95 Markus Lindström M Scho Jan Bart Verbist Ploshtinska polyudnica Robin_Col Kasi Schwarzer Hai Tarsirrus Rhys Little James Ben L Ash Elford Jackarice26 Gina Service Twinny Hill zemnmez Phil Johnston Roberticus1992 KingKyumber Rhys Jackson
https://wn.com/Why_Did_England_Restore_Its_Monarchy_After_Its_Civil_War_(Short_Animated_Documentary)
King Charles II of England, Scotland & Ireland  dissolves Parliament
3:27

King Charles II of England, Scotland & Ireland dissolves Parliament

  • Order:
  • Duration: 3:27
  • Uploaded Date: 22 Dec 2016
  • views: 1254608
Charles II: The Power and the Passion Directed by Joe Wright Produced by Kate Harwood Written by Adrian Hodges Starring Rufus Sewell Martin Turner Ian McDiarmid Music by Robert Lane Cinematography Ryszard Lenczewski Edited by Paul Tothill Distributed by British Broadcasting Corporation Release date 16 November - 7 December 2003 Running time 235 min Language English
https://wn.com/King_Charles_Ii_Of_England,_Scotland_Ireland_Dissolves_Parliament
A Brief History Of Charles II - Charles II Of England
1:27:31

A Brief History Of Charles II - Charles II Of England

  • Order:
  • Duration: 1:27:31
  • Uploaded Date: 25 Dec 2022
  • views: 114272
A brief history of King Charles II of England. Time Stamps 0:00 Intro 0:52 An Early Life Of War 16:46 A King With No Kingdom 35:39 A King Restored 50:11 The Flames Of War 1:01:50 Beware The Heir 1:18:07 The Death Of Charles II Attribution Videos All videos not notated below were collected through royalty free websites and require no attribution. Websites include Pexels & Pixabay & Videvo Pen Writing - Videezy - Free Stock Footage http://www.videezy.com/ Photos All pictures were collected under creative commons license, public domain, royalty free websites or with permission from copyright holders. Any photos not notated below were collected via public domain. If there is an error in this, please contact me and I will adjust accordingly as it has been done unintentionally. St James Palace- Tony Hisgett from Birmingham, UK, CC BY 2.0 https://creativecommons.org/licenses/by/2.0, via Wikimedia Commons Elizabeth Castle- Dan Marsh, CC BY 3.0 https://creativecommons.org/licenses/by/3.0, via Wikimedia Commons Royal oak- Sjwells53, CC BY-SA 3.0 https://creativecommons.org/licenses/by-sa/3.0, via Wikimedia Commons Charles II Tomb- VCR Giulio19, CC BY-SA 4.0 https://creativecommons.org/licenses/by-sa/4.0, via Wikimedia Commons Music Medieval Astrology- Underbelly & Ty Mayer Calcutta Sunset- E's Jammy Jams No.7 Alone With My Thoughts- Esther Abrami No.2 Remembering Her - Esther Abrami Dreams Become Real- "Dreams Become Real by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1500027 Artist: http://incompetech.com/" Loss- "Loss- ""Loss by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100171 Artist: http://incompetech.com/""" Stark Goes Dark - The Whole Other Sources Charles II, King Of England Scotland & Ireland - Ronald Hutton Charles II, The Star King - Clare Jackson Charles I, A Political Life - Richard Cust Charles I, An Abbreviated Life - Mark Kishlansky Oliver Cromwell, England's Protector - David Horspool wikipedia.org *Disclaimer- It is always the intention that the photos depicted on screen during the video are to be that of the person or event being discussed in the narration. However, in instances where a public photo does not exist or could not be found, a generic likeness or photo depicting a similar style event may be used to illustrate any points being made. *Errors &, Corrections: It was incorrectly stated in the video that Lucy Walter was involved in the murder of her husband. She actually was involved in the attempted murder of her lover Lord Thomas Howard, but Howard survived the attack wounded and was not her husband.
https://wn.com/A_Brief_History_Of_Charles_Ii_Charles_Ii_Of_England
Charles ll: The King of Bling Song 🎶 | Slimy Stuarts | Horrible Histories
2:00

Charles ll: The King of Bling Song 🎶 | Slimy Stuarts | Horrible Histories

  • Order:
  • Duration: 2:00
  • Uploaded Date: 03 Jul 2020
  • views: 2515705
It's Charles ll, the king who's the king of bling, liked spaniels, and knew where the party was always at. Subscribe for more Horrible Histories: http://bit.ly/HorribleHistoriesSubscribe Get more episode of Horrible Histories as well as all the extras on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b00sp0l8/horrible-histories #HorribleHistories is a hit #CBBC show that explores the side of history that they don’t teach you about in school! From the Rotten Romans, Vicious Vikings and Awful Egyptians to the Slimy Stuarts and Terrible Tudors, Horrible Histories covers the funniest, yuckiest and most gruesome bits of history for kids. Watch more: Horrible Histories Compilations: https://bit.ly/3arcr0I Horrible Histories Sketches and Parodies: https://bit.ly/2JkklNO Horrible Histories Songs: https://bit.ly/33TMrZI This is a commercial channel from BBC Studios.
https://wn.com/Charles_Ll_The_King_Of_Bling_Song_🎶_|_Slimy_Stuarts_|_Horrible_Histories
Charles II, the Restoration of the Monarchy and Windsor Castle
12:11

Charles II, the Restoration of the Monarchy and Windsor Castle

  • Order:
  • Duration: 12:11
  • Uploaded Date: 15 Oct 2021
  • views: 133576
In this video made with and for the Royal Collection Trust, Chloe Storer explores how, after 11 years of Republican rule, Charles II restored the majesty and authority of the monarchy.
https://wn.com/Charles_Ii,_The_Restoration_Of_The_Monarchy_And_Windsor_Castle
Charles II of England - The King who Restored the English Monarchy (fixed)
14:37

Charles II of England - The King who Restored the English Monarchy (fixed)

  • Order:
  • Duration: 14:37
  • Uploaded Date: 22 Jan 2024
  • views: 6128
In this video we will see the story of Charles II of England, the monarch who restored the English monarchy. See U in History #SeeUinHistory #History
https://wn.com/Charles_Ii_Of_England_The_King_Who_Restored_The_English_Monarchy_(Fixed)
สกอตแลนด์ ภายใต้การปกครองของ เจ้าผู้อารักขาแห่งเครือจักรภพ | ประวัติศาสตร์สกอตแลนด์ ตอนที่ 18
13:29

สกอตแลนด์ ภายใต้การปกครองของ เจ้าผู้อารักขาแห่งเครือจักรภพ | ประวัติศาสตร์สกอตแลนด์ ตอนที่ 18

  • Order:
  • Duration: 13:29
  • Uploaded Date: 26 Aug 2024
  • views: 729
ในช่วงกลางศตวรรษที่ 17 สกอตแลนด์และอังกฤษต่างเผชิญกับความท้าทายทางการเมืองและสังคมที่รุนแรง การเผชิญหน้าระหว่างกษัตริย์และรัฐสภาในสงครามกลางเมืองที่ทำให้ทั้งสกอตแลนด์ และอังกฤษต้องตกอยู่ในสถานการณ์ที่ยากลำบาก และสำหรับสกอตแลนด์ในช่วงเวลานั้นเป็นประเทศที่มีวัฒนธรรมและประเพณีที่แตกต่างจากอังกฤษอย่างชัดเจน แม้จะมีความสัมพันธ์อันแน่นแฟ้นระหว่างสองประเทศในระดับการเมืองและศาสนา แต่ความเป็นสกอตแลนด์ที่มีเอกลักษณ์เฉพาะตัวก็ทำให้เกิดความตึงเครียดในหลายมิติ Oliver Cromwell เป็นบุคคลสำคัญที่ก้าวขึ้นมามีบทบาทในช่วงเวลานี้ เขาเป็นผู้บัญชาการทหารที่สามารถควบคุมสถานการณ์ในอังกฤษและสกอตแลนด์ได้ด้วยความแข็งแกร่งและความสามารถในการนำทัพของเขา Cromwell ไม่เพียงแต่เป็นผู้นำกองทัพที่ชนะสงครามกลางเมืองอังกฤษและนำไปสู่การประหารชีวิต Charles I ในปี 1649 แต่เขายังเป็นบุคคลที่สามารถพลิกโฉมการเมืองของทั้งเกาะบริเตน ให้เข้าสู่ยุคใหม่ที่เรียกว่าเครือจักรภพ (Commonwealth) ซึ่งมีอำนาจครอบคลุมทั้งอังกฤษ สกอตแลนด์ และไอร์แลนด์ ในมุมมองของสกอตแลนด์ การขึ้นมาของ Cromwell ไม่ใช่เพียงการเปลี่ยนแปลงทางการเมืองในอังกฤษเท่านั้น แต่ยังเป็นจุดเปลี่ยนที่สำคัญในประวัติศาสตร์ของสกอตแลนด์ด้วย การที่ Cromwell สามารถควบคุมสกอตแลนด์ได้หลังจากการหนีไปของ Charles II กษัตริย์องค์ใหม่ของสกอตแลนด์ ทำให้สกอตแลนด์ต้องเผชิญกับการเปลี่ยนแปลงทางการเมืองและสังคมที่ลึกซึ้ง ในช่วงเวลานี้ สกอตแลนด์เป็นประเทศที่มีความภาคภูมิใจในเสรีภาพและเอกราชของตน การที่กษัตริย์ Charles I ถูกประหารชีวิตและ Charles II ต้องลี้ภัย ทำให้สกอตแลนด์ต้องยอมรับความเป็นจริงที่ว่าการต่อสู้กับกองทัพของ Cromwell อาจไม่ใช่เรื่องง่าย และนำไปสู่การเข้ายึดครองสกอตแลนด์โดยกองทัพอังกฤษ นี่คือช่วงเวลาที่สกอตแลนด์ต้องปรับตัวต่อความเปลี่ยนแปลงอย่างรวดเร็ว และต้องเผชิญกับการปกครองใหม่ที่มาพร้อมกับนโยบายและการบริหารที่ต่างไปอย่างสิ้นเชิง #ประวัติศาสตร์ #history #สกอตแลนด์ #commonwealth #scotland
https://wn.com/สกอตแลนด์_ภายใต้การปกครองของ_เจ้าผู้อารักขาแห่งเครือจักรภพ_|_ประวัติศาสตร์สกอตแลนด์_ตอนที่_18
Charles II: The Merry Monarch
29:19

Charles II: The Merry Monarch

  • Order:
  • Duration: 29:19
  • Uploaded Date: 20 Oct 2023
  • views: 33190
Check out NordVPN and get 4 months EXTRA on a 2-year plan by going to https://nordvpn.com/bio. It’s risk-free with Nord’s 30-day money-back guarantee! → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out our other YouTube Channels: Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw TopTenz: https://www.youtube.com/user/toptenznet Check out Karl's YouTube Channels: Fact Fiend: https://www.youtube.com/@UCaR-e8ComPih10DqPi3sdWg Wikiweekends: https://www.youtube.com/@UCtrzkwlnKfS9knQ-zuwYBLQ Untitled Side Channel: https://www.youtube.com/@UCLJvIXTMM7bjZ5-ju8xckJg Further Reading: https://www.nam.ac.uk/explore/british-civil-wars https://scottishhistorysociety.com/the-national-covenant-1637-60/ https://www.historic-uk.com/HistoryMagazine/DestinationsUK/The-Battle-of-Worcester/ https://www.parliament.uk/about/living-heritage/evolutionofparliament/parliamentaryauthority/civilwar/overview/protectorate-parliaments/ https://www.rmg.co.uk/stories/blog/who-was-nell-gwynn https://www.london-fire.gov.uk/museum/history-and-stories/the-great-fire-of-london/ https://royalsociety.org/about-us/history/ https://www.rmg.co.uk/royal-observatory https://www.westminster-abbey.org/abbey-commemorations/royals/charles-ii
https://wn.com/Charles_Ii_The_Merry_Monarch
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • A Brief History of King Charles II 1660-1685
    6:32
    A Brief History of King Charles II 1660-1685remove from playlist
  • Charles II  & The Stuart Restoration Documentary
    1:11:11
    Charles II & The Stuart Restoration Documentaryremove from playlist
  • Why did England restore its Monarchy after its Civil War? (Short Animated Documentary)
    3:10
    Why did England restore its Monarchy after its Civil War? (Short Animated Documentary)remove from playlist
  • King Charles II of England, Scotland & Ireland  dissolves Parliament
    3:27
    King Charles II of England, Scotland & Ireland dissolves Parliamentremove from playlist
  • A Brief History Of Charles II - Charles II Of England
    1:27:31
    A Brief History Of Charles II - Charles II Of Englandremove from playlist
  • Charles ll: The King of Bling Song 🎶 | Slimy Stuarts | Horrible Histories
    2:00
    Charles ll: The King of Bling Song 🎶 | Slimy Stuarts | Horrible Historiesremove from playlist
  • Charles II, the Restoration of the Monarchy and Windsor Castle
    12:11
    Charles II, the Restoration of the Monarchy and Windsor Castleremove from playlist
  • Charles II of England - The King who Restored the English Monarchy (fixed)
    14:37
    Charles II of England - The King who Restored the English Monarchy (fixed)remove from playlist
  • สกอตแลนด์ ภายใต้การปกครองของ เจ้าผู้อารักขาแห่งเครือจักรภพ | ประวัติศาสตร์สกอตแลนด์ ตอนที่ 18
    13:29
    สกอตแลนด์ ภายใต้การปกครองของ เจ้าผู้อารักขาแห่งเครือจักรภพ | ประวัติศาสตร์สกอตแลนด์ ตอนที่ 18remove from playlist
  • Charles II: The Merry Monarch
    29:19
    Charles II: The Merry Monarchremove from playlist
developed with YouTube
PLAYLIST TIME:

A Brief History of King Charles II 1660-1685

A brief outline of the life and reign of King Charles II 1660-1685, in under 7 minutes. For further in depth knowledge on King Charles II, I can highly recommend the book by Lady Antonia Fraser. https://amzn.to/3mBj4Jg
6:32
A Brief History of King Charles II 1660-1685
A brief outline of the life and reign of King Charles II 1660-1685, in under 7 minutes. Fo...
published: 16 Apr 2023
Play in Full Screen
1:11:11
Charles II & The Stuart Restoration Documentary
For early access to our videos, discounted merch and many other exclusive perks please sup...
published: 31 Jul 2023
Play in Full Screen
3:10
Why did England restore its Monarchy after its Civil War? (Short Animated Documentary)
A lot of people in England (as well as Scotland and Ireland) went to a lot of trouble to r...
published: 09 May 2023
Play in Full Screen
3:27
King Charles II of England, Scotland & Ireland dissolves Parliament
Charles II: The Power and the Passion Directed by Joe Wright Produced by Kate Harwood W...
published: 22 Dec 2016
Play in Full Screen
1:27:31
A Brief History Of Charles II - Charles II Of England
A brief history of King Charles II of England. Time Stamps 0:00 Intro 0:52 An Early L...
published: 25 Dec 2022
Play in Full Screen
2:00
Charles ll: The King of Bling Song 🎶 | Slimy Stuarts | Horrible Histories
It's Charles ll, the king who's the king of bling, liked spaniels, and knew where the part...
published: 03 Jul 2020
Play in Full Screen
12:11
Charles II, the Restoration of the Monarchy and Windsor Castle
In this video made with and for the Royal Collection Trust, Chloe Storer explores how, aft...
published: 15 Oct 2021
Play in Full Screen
14:37
Charles II of England - The King who Restored the English Monarchy (fixed)
In this video we will see the story of Charles II of England, the monarch who restored the...
published: 22 Jan 2024
Play in Full Screen
13:29
สกอตแลนด์ ภายใต้การปกครองของ เจ้าผู้อารักขาแห่งเครือจักรภพ | ประวัติศาสตร์สกอตแลนด์ ตอนที่ 18
ในช่วงกลางศตวรรษที่ 17 สกอตแลนด์และอังกฤษต่างเผชิญกับความท้าทายทางการเมืองและสังคมที่รุนแร...
published: 26 Aug 2024
Play in Full Screen
29:19
Charles II: The Merry Monarch
Check out NordVPN and get 4 months EXTRA on a 2-year plan by going to https://nordvpn.com/...
published: 20 Oct 2023
Play in Full Screen

Charles II of England

Charles II (29 May 1630 – 6 February 1685) was monarch of the three kingdoms of England, Scotland, and Ireland.

Charles II's father, Charles I, was executed at Whitehall on 30 January 1649, at the climax of the English Civil War. Although the Parliament of Scotland proclaimed Charles II King on 5 February 1649, England entered the period known as the English Interregnum or the English Commonwealth, and the country was a de facto republic, led by Oliver Cromwell. Cromwell defeated Charles II at the Battle of Worcester on 3 September 1651, and Charles fled to mainland Europe. Cromwell became virtual dictator of England, Scotland and Ireland, and Charles spent the next nine years in exile in France, the Dutch Republic, and the Spanish Netherlands.

A political crisis that followed the death of Cromwell in 1658 resulted in the restoration of the monarchy, and Charles was invited to return to Britain. On 29 May 1660, his 30th birthday, he was received in London to public acclaim. After 1660, all legal documents were dated as if he had succeeded his father as king in 1649.

'); } 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: the merry monarch

Edit

Do You Know Your Lowcountry?: King Charles II, the merry monarch

The Post and Courier 15 May 2023
Upon his accession, Charles II set about ushering in England’s great Restoration Era — what Rosen calls “the merry old England of bawdy theaters, wenches, witty playwrights, horse racing, formal ...
Edit

Preserving Hula, the Heartbeat of Hawaii at the Merrie Monarch Festival

New York Times 07 May 2023
For 60 years, the Merrie Monarch Festival has contributed to the reclamation of Hawaiian culture, language and identity ... .
Edit

The Merrie Monarch Ho’ike — in pictures

Hawaii Tribune-Herald 14 Apr 2023
A sold out crowd celebrated the ...
Edit

The Merry Monarch - Delving into the realm of British titles

Irish Central 14 Sep 2022
The average Brit has no less than five titles or so above him, such as earl, baron, duke, duchess, etc ... .
  • 1

Most Viewed

×