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

West End (Greenville, South Carolina)

West End is a neighborhood in Greenville, South Carolina. Located across the Reedy River in downtown, the west end became home to Furman University when it was first established in 1852. The school expanded to fill fifty acres and then moved to its current location northwest of the city in 1958. The Greenville and Columbia Railroad (now part of Norfolk Southern) arrived there in 1853, bringing increased commercial activity to the neighborhood that had been first settled in the 1830s.

This activity was truncated less than a decade later with the coming of the American Civil War of 1861–65. After the war, though, the introduction of new fertilizers made cotton farming profitable again in the area. Cotton and fertilizer warehouses and numerous support industries sprung up. The commercial success, with its accompanying residential requirements, brought churches and schools to the west end. Chicora College for Women was established in 1893 for women before relocating to Columbia 22 years later. (It merged with Queens University of Charlotte in North Carolina in 1930.)

West End (Richmond, Virginia)

The West End is a part of Richmond, Virginia. Comparable to Upstate New York, the West End is a relative term. It may include only the western part of the city of Richmond or extend as far as western Henrico County. As there is no one municipal organization that represents this specific region, the boundaries are loosely defined as being north of the James River, west of I-195, and south of Broad Street. Historically, the Richmond neighborhoods of the Fan and the Museum District were a part of the West End. A primary conduit through the West End is Interstate 64.

Geographic description

This section is arranged by exits off Interstate 64. In previous decades, the term "The West End" generally referred to the western area of the city itself. However, in recent years, the urbanized area has expanded residentially and commercially into Henrico County, and new developments in the western portion of the city and county in combination are now also considered to be part of "The West End."

West End theatre

West End theatre is a common term for mainstream professional theatre staged in the large theatres of "Theatreland" in and near the West End of London. Along with New York's Broadway theatre, West End theatre is usually considered to represent the highest level of commercial theatre in the English-speaking world. Seeing a West End show is a common tourist activity in London.

Total attendances first surpassed 12 million in 2002 and then 13 million in 2007, setting a new record for the West End. In 2013, ticket sales reached a record 14.5 million. Famous screen actors regularly appear on the London stage.

History

The Theatre in London flourished after the English Reformation. The first permanent public playhouse, known simply as The Theatre, was constructed in 1576 in Shoreditch by James Burbage. It was soon joined by The Curtain. Both are known to have been used by William Shakespeare's company. In 1599, the timber from The Theatre was moved to Southwark, where it was used in building the Globe Theatre in a new theatre district formed beyond the controls of the City corporation. These theatres were closed in 1642 due to the Puritans who would later influence the interregnum of 1649.

West End Pond

West End Pond is a wetland in Anguilla, a British Overseas Territory in the Caribbean Sea. It is one of the territory’s Important Bird Areas (IBAs).

Description

The pond is a 19 ha brackish lagoon in the West End district, near the south-western end of the main island, and was historically used for salt production. It has a marl substrate and rocky shoreline and is divided by a culverted causeway that provides access to tourism development along the beach at Shoal Bay West. The eastern basin of the pond is roughly circular and about 370 m across, while the western section is longer and narrower. It is mostly surrounded by stands of black, white and buttonwood mangroves.

Birds

The IBA was identified as such by BirdLife International because it supports populations of royal and common terns, Caribbean elaenias and Lesser Antillean bullfinches.

References

Coordinates: 18°16′05″N 63°16′28″W / 18.26806°N 63.27444°W


Podcasts:

  • The ultimate guide to London theatre 🎭

    Visiting London soon and want to experience the theatre scene? London's world-famous West End has amazing plays and musicals with top-notch talent. In this video we explain how you book London theatre tickets, how to find which shows to go see, and some smaller lesser-known theatres with incredible performances you can't miss. More videos for your London trip: TripAdvisor suggestions to AVOID in London: https://www.youtube.com/watch?v=C8JeYdsujtE&t Hidden historic sights you must visit in London: https://www.youtube.com/watch?v=0B14cqIlHhM&t How to take The Tube in London: https://www.youtube.com/watch?v=EOVX4eUYJ-4 ⭐️FREE London Trip Checklist (includes both a printable and a Notion template): https://loveandlondon.com/london-trip-checklist/ ⭐️ ♥️ MORE LONDON HELP ♥️ (some links are ...

    published: 04 May 2023
  • Les Misérables | West End LIVE 2023

    Les Misérables dreamed a dream to perform at West End LIVE 2023 and here they are! Get tickets: https://officiallondontheatre.com/show/les-miserables-76782/?month=06%2F22&utm_source=YouTube&utm_medium=listing&utm_campaign=Les+Mis%C3%A9rables Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre

    published: 17 Jun 2023
  • London Theatre Guide West End Shows Discount Tickets + Keep the secret

    The London Theatre Guide. London offers some of the world's best theatre, from world-famous musicals to West End shows and the best plays. Be sure to book ahead if you know what you want to see. Or take advantage of cheap London theatre ticket deals and offers from TKTS. Look for cheap London theatre tickets in Leicester Square and see a West End show for a bargain A great place to buy theatre tickets for the top musicals, plays and drama in London's West End and beyond The Mousetrap is a play by Agatha Christie. The Mousetrap opened in London's West End in 1952, and has been running continuously since then. The longest running West End show, it has by far the longest initial run of any play in history. So see our mousetrap review and St.Martins theatre venue information. Chapters: 00:...

    published: 15 Apr 2018
  • Harry Potter and the Cursed Child | 2023 West End Trailer

    Based on an original new story by J.K. Rowling, Jack Thorne and John Tiffany, Harry Potter and the Cursed Child, a play by Jack Thorne received its world premiere in London’s West End at the Palace Theatre in summer 2016. The critically acclaimed production is most awarded West End play in the history of the Olivier Awards, winning a record-breaking nine awards including Best New Play and Best Director in 2017. Book tickets to Harry Potter and the Cursed Child here: https://officiallondontheatre.com/show/harry-potter-and-the-cursed-child-tickets-347931/?month=05%2F23&utm_source=YouTube&utm_medium=listing&utm_campaign=Harry+Potter+and+the+Cursed+Child Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like...

    published: 17 May 2023
  • Mrs. Doubtfire | 2023 West End Trailer

    Out-of-work actor Daniel will do anything for his kids. After losing custody in a messy divorce, he creates the alter ego of Scottish nanny Euphegenia Doubtfire in a desperate attempt to stay in their lives. As his new character takes on a life of its own, Mrs. Doubtfire teaches Daniel more than he bargained for about how to be a father. Get tickets: https://officiallondontheatre.com/show/mrs-doubtfire-111437850/?month=05%2F23&utm_source=YouTube&utm_medium=listing&utm_campaign=Mrs.+DoubtfireOfficial London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here...

    published: 16 Jun 2023
  • Top 10 London Musicals

    http://www.visitlondon.com/musicals Experience the magic of West End theatre in London. See the capital’s best musicals come to life with our video guide to the most popular shows currently appearing in the West End.   See amazing scenes and hear the famous songs from these hugely popular musicals. Book tickets now for the best prices and hottest tickets in London.   Find out more about London’s top musicals, and book your tickets, at http://www.visitlondon.com/musicals Subscribe to our channel here 👉 https://www.youtube.com/c/VisitLondonOfficial?sub_confirmation_1 Visit London is your ultimate guide to London. From the best activities in the city to top restaurants, bars, and hotels, explore what's on in London today. 🇬🇧 #VisitLondon Follow us! Website: https://www.visitlondon.com I...

    published: 05 Mar 2015
  • The Phantom Of The Opera | 2021 West End Trailer

    Ahead of the 35th Birthday of The Phantom of the Opera, we're getting a look at new footage from the show. Experience the thrill of the West End’s most haunting love story, starring double Olivier Award nominee Killian Donnelly as The Phantom, Lucy St. Louis as Christine Daaé and Rhys Whitfield as Raoul. The Phantom Awaits… Book at: https://officiallondontheatre.com/show/the-phantom-of-the-opera-98504/?month=10%2F21 Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondo...

    published: 08 Oct 2021
  • Disney's Frozen | 2021 West End Trailer

    For the first time in forever, the Theatre Royal Drury Lane reopens its doors, bringing Elsa and Anna’s story to the stage in this heart-melting theatrical production. Get tickets to Disney's Frozen: https://officiallondontheatre.com/show/disneys-frozen-tickets-111426809/?utm_source=YouTube&utm_medium=listing&utm_campaign=Disney%27s+Frozen Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.ins...

    published: 09 Sep 2021
  • The Best of the West End - Piccadilly LIVE!

    Join me LIVE in one of the the busiest areas of London, and one of the most fun! They do say if you wait around in Piccadilly Circus long enough, you'll eventually bump into every person you've ever known...hmm... that might be a stretch, but there'll certainly be a lot of folks about, and it should be an enjoyable LIVE walk and talk in this iconic area. Architecture, History, People and of course Theatre will be on the menu! Support my research and creation of these tours at https://buymeacoffee.com/intermission https://paypal.com/paypalme/intermissiontours Become a member at https://buymeacoffee.com/intermission/membership for access to many unlisted tours and story readings

    published: 18 Aug 2023
  • Les Misérables | 2022 West End Trailer

    Les Misérables is a musical adaptation of Victor Hugo’s great humanitarian novel of one man’s determined survival in the face of another’s vengeful persecution. Set amid the social and political struggles of 19th century France, West End favourite Les Misérables tells the story of former prisoner Jean Valjean, who is pursued for decades by his policeman nemesis, Javert. Their epic cat-and-mouse journey will take them from the French fields to the gritty Parisian sewers, amidst an enthralling story of broken dreams, unrequited love, passion, sacrifice and redemption – a timeless testament to the survival of the human spirit. Get tickets: https://officiallondontheatre.com/show/les-miserables-76782/?month=05%2F22&utm_source=YouTube&utm_medium=listing&utm_campaign=Les+Mis%C3%A9rables Offici...

    published: 05 May 2022
developed with YouTube
The ultimate guide to London theatre 🎭
11:15

The ultimate guide to London theatre 🎭

  • Order:
  • Duration: 11:15
  • Uploaded Date: 04 May 2023
  • views: 105451
Visiting London soon and want to experience the theatre scene? London's world-famous West End has amazing plays and musicals with top-notch talent. In this video we explain how you book London theatre tickets, how to find which shows to go see, and some smaller lesser-known theatres with incredible performances you can't miss. More videos for your London trip: TripAdvisor suggestions to AVOID in London: https://www.youtube.com/watch?v=C8JeYdsujtE&t Hidden historic sights you must visit in London: https://www.youtube.com/watch?v=0B14cqIlHhM&t How to take The Tube in London: https://www.youtube.com/watch?v=EOVX4eUYJ-4 ⭐️FREE London Trip Checklist (includes both a printable and a Notion template): https://loveandlondon.com/london-trip-checklist/ ⭐️ ♥️ MORE LONDON HELP ♥️ (some links are affiliated and help us keep producing these videos) 📗 Free London 101 Guide for first-time London visitors: https://goo.gl/Eh3HP3 📱 3-Day London Itinerary and 6-Day London Itinerary: (PDF guide, digital map, and more included): https://shop.loveandlondon.com/collections/itineraries 📍 Travel guides for London with Londoner-loved hidden gems, divided by area (The Casual Tourist Guides): https://bit.ly/3bgeRoj 💸 London Spending Guide (includes budget calculator spreadsheet, hotel recommendations and more): https://bit.ly/3OduFqy 🏨 Our top London hotel and apart-hotel tips and recommendations: https://loveandlondon.com/category/london-accommodations/ 🚶🏼‍♀️Get up to 70% off your hotels in London and worldwide via our community booking platform: https://book.justwndr.com/@loveandlondon 🚕 Pre-book your airport taxi: https://www.book-online-transfers.com/en/loveandlondon-airport-taxi 🚐 Book trains, coach buses and more around the UK and Europe via Omio: https://omio.sjv.io/c/1719972/409973/7385 ❓Visiting London FAQs: https://loveandlondon.com/faqs-from-london-visitors/ About Love and London: I'm Jess, I've lived in London for many years, and this channel is a London travel guide for anyone visiting the city that wants to experience it like you live here. Beyond talking about the usual London attractions, myself and my team show you some of the cooler things to do in London, that most travel guides don't mention. Watch our videos and you'll feel like you've got a Londoner friend telling you the best kept secrets in the city. MENTIONED IN THIS VIDEO: Official London Theatre: https://officiallondontheatre.com/ TodayTix rush and lottery: https://www.todaytix.com/london/category/rush-tickets Kids Week: https://officiallondontheatre.com/kids-week/ The Barbican: https://www.barbican.org.uk/whats-on/theatre-dance The National Theatre: https://www.nationaltheatre.org.uk/ Shakespeare's Globe: https://www.shakespearesglobe.com/ The Old Vic: https://www.oldvictheatre.com/ Agatha Christie's The Mousetrap: https://uk.the-mousetrap.co.uk/
https://wn.com/The_Ultimate_Guide_To_London_Theatre_🎭
Les Misérables | West End LIVE 2023
10:07

Les Misérables | West End LIVE 2023

  • Order:
  • Duration: 10:07
  • Uploaded Date: 17 Jun 2023
  • views: 212958
Les Misérables dreamed a dream to perform at West End LIVE 2023 and here they are! Get tickets: https://officiallondontheatre.com/show/les-miserables-76782/?month=06%2F22&utm_source=YouTube&utm_medium=listing&utm_campaign=Les+Mis%C3%A9rables Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre
https://wn.com/Les_Misérables_|_West_End_Live_2023
London Theatre Guide West End Shows Discount  Tickets + Keep the secret
11:41

London Theatre Guide West End Shows Discount Tickets + Keep the secret

  • Order:
  • Duration: 11:41
  • Uploaded Date: 15 Apr 2018
  • views: 42126
The London Theatre Guide. London offers some of the world's best theatre, from world-famous musicals to West End shows and the best plays. Be sure to book ahead if you know what you want to see. Or take advantage of cheap London theatre ticket deals and offers from TKTS. Look for cheap London theatre tickets in Leicester Square and see a West End show for a bargain A great place to buy theatre tickets for the top musicals, plays and drama in London's West End and beyond The Mousetrap is a play by Agatha Christie. The Mousetrap opened in London's West End in 1952, and has been running continuously since then. The longest running West End show, it has by far the longest initial run of any play in history. So see our mousetrap review and St.Martins theatre venue information. Chapters: 00:00 London Theatre Guide 03:35 TKTS Discount London Theatre Tickets 05:22 The Mousetrap theatre show 06:09 St Martins Theatre 08:30 Dress Circle Seats
https://wn.com/London_Theatre_Guide_West_End_Shows_Discount_Tickets_Keep_The_Secret
Harry Potter and the Cursed Child | 2023 West End Trailer
1:36

Harry Potter and the Cursed Child | 2023 West End Trailer

  • Order:
  • Duration: 1:36
  • Uploaded Date: 17 May 2023
  • views: 116863
Based on an original new story by J.K. Rowling, Jack Thorne and John Tiffany, Harry Potter and the Cursed Child, a play by Jack Thorne received its world premiere in London’s West End at the Palace Theatre in summer 2016. The critically acclaimed production is most awarded West End play in the history of the Olivier Awards, winning a record-breaking nine awards including Best New Play and Best Director in 2017. Book tickets to Harry Potter and the Cursed Child here: https://officiallondontheatre.com/show/harry-potter-and-the-cursed-child-tickets-347931/?month=05%2F23&utm_source=YouTube&utm_medium=listing&utm_campaign=Harry+Potter+and+the+Cursed+Child Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre
https://wn.com/Harry_Potter_And_The_Cursed_Child_|_2023_West_End_Trailer
Mrs. Doubtfire | 2023 West End Trailer
0:47

Mrs. Doubtfire | 2023 West End Trailer

  • Order:
  • Duration: 0:47
  • Uploaded Date: 16 Jun 2023
  • views: 103341
Out-of-work actor Daniel will do anything for his kids. After losing custody in a messy divorce, he creates the alter ego of Scottish nanny Euphegenia Doubtfire in a desperate attempt to stay in their lives. As his new character takes on a life of its own, Mrs. Doubtfire teaches Daniel more than he bargained for about how to be a father. Get tickets: https://officiallondontheatre.com/show/mrs-doubtfire-111437850/?month=05%2F23&utm_source=YouTube&utm_medium=listing&utm_campaign=Mrs.+DoubtfireOfficial London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre
https://wn.com/Mrs._Doubtfire_|_2023_West_End_Trailer
Top 10 London Musicals
4:06

Top 10 London Musicals

  • Order:
  • Duration: 4:06
  • Uploaded Date: 05 Mar 2015
  • views: 947141
http://www.visitlondon.com/musicals Experience the magic of West End theatre in London. See the capital’s best musicals come to life with our video guide to the most popular shows currently appearing in the West End.   See amazing scenes and hear the famous songs from these hugely popular musicals. Book tickets now for the best prices and hottest tickets in London.   Find out more about London’s top musicals, and book your tickets, at http://www.visitlondon.com/musicals Subscribe to our channel here 👉 https://www.youtube.com/c/VisitLondonOfficial?sub_confirmation_1 Visit London is your ultimate guide to London. From the best activities in the city to top restaurants, bars, and hotels, explore what's on in London today. 🇬🇧 #VisitLondon Follow us! Website: https://www.visitlondon.com Instagram - https://www.instagram.com/visitlondon/ Facebook - https://www.facebook.com/visitlondon/ Twitter - https://www.twitter.com/visitlondon Tik Tok - https://www.tiktok.com/@visitlondon
https://wn.com/Top_10_London_Musicals
The Phantom Of The Opera | 2021 West End Trailer
1:36

The Phantom Of The Opera | 2021 West End Trailer

  • Order:
  • Duration: 1:36
  • Uploaded Date: 08 Oct 2021
  • views: 133059
Ahead of the 35th Birthday of The Phantom of the Opera, we're getting a look at new footage from the show. Experience the thrill of the West End’s most haunting love story, starring double Olivier Award nominee Killian Donnelly as The Phantom, Lucy St. Louis as Christine Daaé and Rhys Whitfield as Raoul. The Phantom Awaits… Book at: https://officiallondontheatre.com/show/the-phantom-of-the-opera-98504/?month=10%2F21 Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre
https://wn.com/The_Phantom_Of_The_Opera_|_2021_West_End_Trailer
Disney's Frozen | 2021 West End Trailer
1:16

Disney's Frozen | 2021 West End Trailer

  • Order:
  • Duration: 1:16
  • Uploaded Date: 09 Sep 2021
  • views: 1234466
For the first time in forever, the Theatre Royal Drury Lane reopens its doors, bringing Elsa and Anna’s story to the stage in this heart-melting theatrical production. Get tickets to Disney's Frozen: https://officiallondontheatre.com/show/disneys-frozen-tickets-111426809/?utm_source=YouTube&utm_medium=listing&utm_campaign=Disney%27s+Frozen Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre
https://wn.com/Disney's_Frozen_|_2021_West_End_Trailer
The Best of the West End - Piccadilly LIVE!
1:02:23

The Best of the West End - Piccadilly LIVE!

  • Order:
  • Duration: 1:02:23
  • Uploaded Date: 18 Aug 2023
  • views: 264
Join me LIVE in one of the the busiest areas of London, and one of the most fun! They do say if you wait around in Piccadilly Circus long enough, you'll eventually bump into every person you've ever known...hmm... that might be a stretch, but there'll certainly be a lot of folks about, and it should be an enjoyable LIVE walk and talk in this iconic area. Architecture, History, People and of course Theatre will be on the menu! Support my research and creation of these tours at https://buymeacoffee.com/intermission https://paypal.com/paypalme/intermissiontours Become a member at https://buymeacoffee.com/intermission/membership for access to many unlisted tours and story readings
https://wn.com/The_Best_Of_The_West_End_Piccadilly_Live
Les Misérables | 2022 West End Trailer
2:04

Les Misérables | 2022 West End Trailer

  • Order:
  • Duration: 2:04
  • Uploaded Date: 05 May 2022
  • views: 257974
Les Misérables is a musical adaptation of Victor Hugo’s great humanitarian novel of one man’s determined survival in the face of another’s vengeful persecution. Set amid the social and political struggles of 19th century France, West End favourite Les Misérables tells the story of former prisoner Jean Valjean, who is pursued for decades by his policeman nemesis, Javert. Their epic cat-and-mouse journey will take them from the French fields to the gritty Parisian sewers, amidst an enthralling story of broken dreams, unrequited love, passion, sacrifice and redemption – a timeless testament to the survival of the human spirit. Get tickets: https://officiallondontheatre.com/show/les-miserables-76782/?month=05%2F22&utm_source=YouTube&utm_medium=listing&utm_campaign=Les+Mis%C3%A9rables Official London Theatre is the number one site to get theatre tickets, news and exclusive interviews for top London shows. Whether you like an upbeat musical, a hilarious slapstick comedy, a dramatic thriller, a family-friendly production or a jaw-dropping dance show, you’ll find tickets for it here. Keep up to date with us! Facebook: https://www.facebook.com/OfficialLondonTheatre/ Twitter: https://twitter.com/london_theatre Instagram: https://www.instagram.com/londontheatre/ #WestEnd #London #Theatre
https://wn.com/Les_Misérables_|_2022_West_End_Trailer
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The ultimate guide to London theatre 🎭
    11:15
    The ultimate guide to London theatre 🎭remove from playlist
  • Les Misérables | West End LIVE 2023
    10:07
    Les Misérables | West End LIVE 2023remove from playlist
  • London Theatre Guide West End Shows Discount  Tickets + Keep the secret
    11:41
    London Theatre Guide West End Shows Discount Tickets + Keep the secretremove from playlist
  • Harry Potter and the Cursed Child | 2023 West End Trailer
    1:36
    Harry Potter and the Cursed Child | 2023 West End Trailerremove from playlist
  • Mrs. Doubtfire | 2023 West End Trailer
    0:47
    Mrs. Doubtfire | 2023 West End Trailerremove from playlist
  • Top 10 London Musicals
    4:06
    Top 10 London Musicalsremove from playlist
  • The Phantom Of The Opera | 2021 West End Trailer
    1:36
    The Phantom Of The Opera | 2021 West End Trailerremove from playlist
  • Disney's Frozen | 2021 West End Trailer
    1:16
    Disney's Frozen | 2021 West End Trailerremove from playlist
  • The Best of the West End - Piccadilly LIVE!
    1:02:23
    The Best of the West End - Piccadilly LIVE!remove from playlist
  • Les Misérables | 2022 West End Trailer
    2:04
    Les Misérables | 2022 West End Trailerremove from playlist
developed with YouTube
PLAYLIST TIME:

The ultimate guide to London theatre 🎭

Visiting London soon and want to experience the theatre scene? London's world-famous West End has amazing plays and musicals with top-notch talent. In this video we explain how you book London theatre tickets, how to find which shows to go see, and some smaller lesser-known theatres with incredible performances you can't miss. More videos for your London trip: TripAdvisor suggestions to AVOID in London: https://www.youtube.com/watch?v=C8JeYdsujtE&t Hidden historic sights you must visit in London: https://www.youtube.com/watch?v=0B14cqIlHhM&t How to take The Tube in London: https://www.youtube.com/watch?v=EOVX4eUYJ-4 ⭐️FREE London Trip Checklist (includes both a printable and a Notion template): https://loveandlondon.com/london-trip-checklist/ ⭐️ ♥️ MORE LONDON HELP ♥️ (some links are affiliated and help us keep producing these videos) 📗 Free London 101 Guide for first-time London visitors: https://goo.gl/Eh3HP3 📱 3-Day London Itinerary and 6-Day London Itinerary: (PDF guide, digital map, and more included): https://shop.loveandlondon.com/collections/itineraries 📍 Travel guides for London with Londoner-loved hidden gems, divided by area (The Casual Tourist Guides): https://bit.ly/3bgeRoj 💸 London Spending Guide (includes budget calculator spreadsheet, hotel recommendations and more): https://bit.ly/3OduFqy 🏨 Our top London hotel and apart-hotel tips and recommendations: https://loveandlondon.com/category/london-accommodations/ 🚶🏼‍♀️Get up to 70% off your hotels in London and worldwide via our community booking platform: https://book.justwndr.com/@loveandlondon 🚕 Pre-book your airport taxi: https://www.book-online-transfers.com/en/loveandlondon-airport-taxi 🚐 Book trains, coach buses and more around the UK and Europe via Omio: https://omio.sjv.io/c/1719972/409973/7385 ❓Visiting London FAQs: https://loveandlondon.com/faqs-from-london-visitors/ About Love and London: I'm Jess, I've lived in London for many years, and this channel is a London travel guide for anyone visiting the city that wants to experience it like you live here. Beyond talking about the usual London attractions, myself and my team show you some of the cooler things to do in London, that most travel guides don't mention. Watch our videos and you'll feel like you've got a Londoner friend telling you the best kept secrets in the city. MENTIONED IN THIS VIDEO: Official London Theatre: https://officiallondontheatre.com/ TodayTix rush and lottery: https://www.todaytix.com/london/category/rush-tickets Kids Week: https://officiallondontheatre.com/kids-week/ The Barbican: https://www.barbican.org.uk/whats-on/theatre-dance The National Theatre: https://www.nationaltheatre.org.uk/ Shakespeare's Globe: https://www.shakespearesglobe.com/ The Old Vic: https://www.oldvictheatre.com/ Agatha Christie's The Mousetrap: https://uk.the-mousetrap.co.uk/
11:15
The ultimate guide to London theatre 🎭
Visiting London soon and want to experience the theatre scene? London's world-famous West ...
published: 04 May 2023
Play in Full Screen
10:07
Les Misérables | West End LIVE 2023
Les Misérables dreamed a dream to perform at West End LIVE 2023 and here they are! Get t...
published: 17 Jun 2023
Play in Full Screen
11:41
London Theatre Guide West End Shows Discount Tickets + Keep the secret
The London Theatre Guide. London offers some of the world's best theatre, from world-famo...
published: 15 Apr 2018
Play in Full Screen
1:36
Harry Potter and the Cursed Child | 2023 West End Trailer
Based on an original new story by J.K. Rowling, Jack Thorne and John Tiffany, Harry Potter...
published: 17 May 2023
Play in Full Screen
0:47
Mrs. Doubtfire | 2023 West End Trailer
Out-of-work actor Daniel will do anything for his kids. After losing custody in a messy di...
published: 16 Jun 2023
Play in Full Screen
4:06
Top 10 London Musicals
http://www.visitlondon.com/musicals Experience the magic of West End theatre in London. S...
published: 05 Mar 2015
Play in Full Screen
1:36
The Phantom Of The Opera | 2021 West End Trailer
Ahead of the 35th Birthday of The Phantom of the Opera, we're getting a look at new footag...
published: 08 Oct 2021
Play in Full Screen
1:16
Disney's Frozen | 2021 West End Trailer
For the first time in forever, the Theatre Royal Drury Lane reopens its doors, bringing El...
published: 09 Sep 2021
Play in Full Screen
1:02:23
The Best of the West End - Piccadilly LIVE!
Join me LIVE in one of the the busiest areas of London, and one of the most fun! They do ...
published: 18 Aug 2023
Play in Full Screen
2:04
Les Misérables | 2022 West End Trailer
Les Misérables is a musical adaptation of Victor Hugo’s great humanitarian novel of one ma...
published: 05 May 2022
Play in Full Screen

West End (Greenville, South Carolina)

West End is a neighborhood in Greenville, South Carolina. Located across the Reedy River in downtown, the west end became home to Furman University when it was first established in 1852. The school expanded to fill fifty acres and then moved to its current location northwest of the city in 1958. The Greenville and Columbia Railroad (now part of Norfolk Southern) arrived there in 1853, bringing increased commercial activity to the neighborhood that had been first settled in the 1830s.

This activity was truncated less than a decade later with the coming of the American Civil War of 1861–65. After the war, though, the introduction of new fertilizers made cotton farming profitable again in the area. Cotton and fertilizer warehouses and numerous support industries sprung up. The commercial success, with its accompanying residential requirements, brought churches and schools to the west end. Chicora College for Women was established in 1893 for women before relocating to Columbia 22 years later. (It merged with Queens University of Charlotte in North Carolina in 1930.)

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