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

Carol Burnett

Carol Creighton Burnett (born April 26, 1933) is an American actress, comedian, singer, and writer. She is best known for her long-running TV variety show, The Carol Burnett Show, for CBS. She has achieved success on stage, television, and film in varying genres including dramatic and comedy roles.

Born in San Antonio, Texas to alcoholic parents, Burnett moved with her grandmother to Hollywood, where she attended Hollywood High School and eventually studied theater and musical comedy at UCLA. Later she performed in nightclubs in New York City and had a breakout success on Broadway in 1959 in Once Upon a Mattress, for which she received a Tony Award nomination. She soon made her television debut, regularly appearing on The Garry Moore Show for the next three years, and won her first Emmy Award in 1962. Burnett moved to Los Angeles, California, and began an 11-year run as star of The Carol Burnett Show on CBS television from 1967 to 1978. With its vaudeville roots, The Carol Burnett Show was a variety show that combined comedy sketches with song and dance. The comedy sketches included film parodies and character pieces. Burnett created many memorable characters during the show's television run, and both she and the show won numerous Emmy and Golden Globe Awards.

List of 30 Rock characters

30 Rock is an American television comedy series created by Tina Fey which airs on NBC. The series takes place behind the scenes of a fictional live sketch comedy series, also airing on NBC; the name "30 Rock" refers to the address of the GE Building, where NBC Studios is located (30 Rockefeller Plaza). The series has an ensemble cast consisting of 14 regular cast members: Tina Fey, Alec Baldwin, Tracy Morgan, Jane Krakowski, Jack McBrayer, Scott Adsit, Judah Friedlander, Katrina Bowden, Keith Powell, Lonny Ross, John Lutz, Kevin Brown, Grizz Chapman, and Maulik Pancholy.

Main characters

The series features seven characters appearing during the opening credits, and another seven characters not appearing during the opening credits but also receiving star billing. One character was written out of the show during season four.

Main character appearance summary

Liz Lemon

Elizabeth Miervaldis "Liz" Lemon (Tina Fey), the series' protagonist, is head writer of TGS with Tracy Jordan. Jack Donaghy calls her a "New York third-wave feminist, college-educated, single-and-pretending-to-be-happy-about-it, over-scheduled, undersexed, you buy any magazine that says 'healthy body image' on the cover and every two years you take up knitting for... a week." Lemon is a Star Wars fan and is portrayed as a "geek." She also lacks certain social skills and is a stress eater, particularly ingesting junk food. She is generally shown to have liberal political views. Despite her high standards in men, personified in her imaginary perfect husband, Astronaut Mike Dexter, Lemon has had some "really terrible boyfriends," but eventually finds happiness with Criss Chross, with whom she adopts two children.

Podcasts:

  • A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clip

    A girl scout must always do what is right! Sketch from season 2, episode 21 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #GirlScouts   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,...

    published: 08 Nov 2023
  • The Dentist from The Carol Burnett Show (full sketch)

    Tim Conway & Harvey Korman star in "The Dentist" – one of the most popular sketches from The Carol Burnett Show! Conway plays a recently graduated dentist who accidentally injects himself with novocaine his first day on the job. SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-carxol-burnett-show Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is avai...

    published: 09 May 2019
  • Best of Actors Breaking Character 🤣 The Carol Burnett Show

    These sketches are so hilarious that even the cast has trouble keeping it together. Laugh along with some of the funniest crack-ups from the show! #CarolBurnett #TheCarolBurnettShow 0:00 - Intro 0:09 - The Oldest Fireman 1:02 - The Family (Sorry) 2:12 - The Old Folks 3:25 - The Dentist 6:39 - Clock Repair 7:18 - The Vending Machine 8:08 - The Dresser 9:33 - Dog's Life 12:07 - Tim Conway's Elephant Story   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Wee...

    published: 24 Aug 2022
  • The Lowest Cost Airline You Can Imagine | The Carol Burnett Show Clip

    They might even charge for the air you breathe! Sketch from season 9, episode 1 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #Flying   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,...

    published: 20 Jun 2023
  • Carol Plays the Maid | The Carol Burnett Show Clip

    Carol acts like the maid for a day. Sketch from season 2, episode 24 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #Maid   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is availab...

    published: 03 Nov 2023
  • Carol Burnett Show outtakes - Tim Conway's Elephant Story

    Tim Conway destroys his castmates during a "Mama's Family" sketch on the "Carol Burnett Show" by refusing to let the scene continue until he can finish a story about a circus elephant. Unedited! SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-carxol-burnett-show Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV...

    published: 15 May 2007
  • Tim Conway Cracks Australia Up on The Carol Burnett Show | FULL Episode: S7 Ep11

    Carol's crew goes down under to make Australia laugh on this full episode of The Carol Burnett Show! #CarolBurnett #TheCarolBurnettShow #FullEpisode   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,”...

    published: 28 Sep 2023
  • Bing Crosby & Paul Lynde on The Carol Burnett Show | FULL Episode: S5 Ep.7

    In honor of Carol’s birth month – Happy (almost) Birthday, Carol!!! – we’re posting a FULL EPISODE every week! Today our gift to you is the debut of Harvey’s hilarious Mother Marcus 😊 and an epic Carol crack-up! Watch (for FREE!) right here… #CarolBurnett #TheCarolBurnettShow #FullEpisode About The Carol Burnett Show While there’s no truth to the rumor that “CBS” ever stood for The Carol Burnett Show, for eleven seasons and 278 episodes, this star-studded extravaganza of sketch comedy, song and dance became entertainment central for the network and TV viewers. Burnett operated in a relaxed theater setting that allowed her to take questions, cut loose with her famous Tarzan yell and join fellow performers Harvey Korman, Tim Conway, Vicki Lawrence and Lyle Waggoner to have a laugh or sing...

    published: 15 Apr 2021
  • The Series Finale of The Carol Burnett Show - FULL Episode: S11 Ep.24

    HAPPY BIRTHDAY, CAROL! In honor of your big day, we’re taking a stroll through the glory days of The Carol Burnett Show with the double length series finale. Grab a bowl of popcorn, a comfy seat, (maybe a box of tissues), and enjoy 'A Special Evening with Carol Burnett,' the FULL FINALE (for FREE!) right here... #CarolBurnett #TheCarolBurnettShow #FullEpisode SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-carxol-burnett-show Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of ...

    published: 26 Apr 2021
  • Peter Lawford & Minnie Pearl Take the Stage on The Carol Burnett Show | FULL Episode: S1 Ep27

    Peter Lawford shows off his impeccable acting skills while Minnie Pearl has the crowd holding their stomachs with her stand up comedy on The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #Understudy SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/ Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time,...

    published: 03 Nov 2023
developed with YouTube
A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clip
7:26

A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clip

  • Order:
  • Duration: 7:26
  • Uploaded Date: 08 Nov 2023
  • views: 7547
A girl scout must always do what is right! Sketch from season 2, episode 21 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #GirlScouts   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR.   https://www.shoutfactorytv.com/
https://wn.com/A_Girl_Scout_Badge_For...Stopping_An_Affair_|_The_Carol_Burnett_Show_Clip
The Dentist from The Carol Burnett Show (full sketch)
9:18

The Dentist from The Carol Burnett Show (full sketch)

  • Order:
  • Duration: 9:18
  • Uploaded Date: 09 May 2019
  • views: 8963968
Tim Conway & Harvey Korman star in "The Dentist" – one of the most popular sketches from The Carol Burnett Show! Conway plays a recently graduated dentist who accidentally injects himself with novocaine his first day on the job. SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-carxol-burnett-show Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR. https://www.shoutfactorytv.com/
https://wn.com/The_Dentist_From_The_Carol_Burnett_Show_(Full_Sketch)
Best of Actors Breaking Character 🤣 The Carol Burnett Show
15:14

Best of Actors Breaking Character 🤣 The Carol Burnett Show

  • Order:
  • Duration: 15:14
  • Uploaded Date: 24 Aug 2022
  • views: 5422865
These sketches are so hilarious that even the cast has trouble keeping it together. Laugh along with some of the funniest crack-ups from the show! #CarolBurnett #TheCarolBurnettShow 0:00 - Intro 0:09 - The Oldest Fireman 1:02 - The Family (Sorry) 2:12 - The Old Folks 3:25 - The Dentist 6:39 - Clock Repair 7:18 - The Vending Machine 8:08 - The Dresser 9:33 - Dog's Life 12:07 - Tim Conway's Elephant Story   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR.   https://www.shoutfactorytv.com/
https://wn.com/Best_Of_Actors_Breaking_Character_🤣_The_Carol_Burnett_Show
The Lowest Cost Airline You Can Imagine | The Carol Burnett Show Clip
8:51

The Lowest Cost Airline You Can Imagine | The Carol Burnett Show Clip

  • Order:
  • Duration: 8:51
  • Uploaded Date: 20 Jun 2023
  • views: 2751482
They might even charge for the air you breathe! Sketch from season 9, episode 1 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #Flying   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR.   https://www.shoutfactorytv.com/
https://wn.com/The_Lowest_Cost_Airline_You_Can_Imagine_|_The_Carol_Burnett_Show_Clip
Carol Plays the Maid | The Carol Burnett Show Clip
8:40

Carol Plays the Maid | The Carol Burnett Show Clip

  • Order:
  • Duration: 8:40
  • Uploaded Date: 03 Nov 2023
  • views: 20699
Carol acts like the maid for a day. Sketch from season 2, episode 24 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #Maid   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR.   https://www.shoutfactorytv.com/
https://wn.com/Carol_Plays_The_Maid_|_The_Carol_Burnett_Show_Clip
Carol Burnett Show outtakes - Tim Conway's Elephant Story
4:56

Carol Burnett Show outtakes - Tim Conway's Elephant Story

  • Order:
  • Duration: 4:56
  • Uploaded Date: 15 May 2007
  • views: 44137496
Tim Conway destroys his castmates during a "Mama's Family" sketch on the "Carol Burnett Show" by refusing to let the scene continue until he can finish a story about a circus elephant. Unedited! SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-carxol-burnett-show Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR. https://www.shoutfactorytv.com/
https://wn.com/Carol_Burnett_Show_Outtakes_Tim_Conway's_Elephant_Story
Tim Conway Cracks Australia Up on The Carol Burnett Show | FULL Episode: S7 Ep11
50:57

Tim Conway Cracks Australia Up on The Carol Burnett Show | FULL Episode: S7 Ep11

  • Order:
  • Duration: 50:57
  • Uploaded Date: 28 Sep 2023
  • views: 24870
Carol's crew goes down under to make Australia laugh on this full episode of The Carol Burnett Show! #CarolBurnett #TheCarolBurnettShow #FullEpisode   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR.   https://www.shoutfactorytv.com/
https://wn.com/Tim_Conway_Cracks_Australia_Up_On_The_Carol_Burnett_Show_|_Full_Episode_S7_Ep11
Bing Crosby & Paul Lynde on The Carol Burnett Show | FULL Episode: S5 Ep.7
51:17

Bing Crosby & Paul Lynde on The Carol Burnett Show | FULL Episode: S5 Ep.7

  • Order:
  • Duration: 51:17
  • Uploaded Date: 15 Apr 2021
  • views: 174151
In honor of Carol’s birth month – Happy (almost) Birthday, Carol!!! – we’re posting a FULL EPISODE every week! Today our gift to you is the debut of Harvey’s hilarious Mother Marcus 😊 and an epic Carol crack-up! Watch (for FREE!) right here… #CarolBurnett #TheCarolBurnettShow #FullEpisode About The Carol Burnett Show While there’s no truth to the rumor that “CBS” ever stood for The Carol Burnett Show, for eleven seasons and 278 episodes, this star-studded extravaganza of sketch comedy, song and dance became entertainment central for the network and TV viewers. Burnett operated in a relaxed theater setting that allowed her to take questions, cut loose with her famous Tarzan yell and join fellow performers Harvey Korman, Tim Conway, Vicki Lawrence and Lyle Waggoner to have a laugh or sing a song. The show received 25 Emmy Awards and eight Golden Globes, making it one of the most honored shows in television history. Connect with The Carol Burnett Show Official: Shop The Carol Burnett Show Official DVDs: http://bit.ly/ShopCarol Like The Carol Burnett Show Official on FACEBOOK: http://bit.ly/LikeCarol Follow Time Life on TWITTER: http://bit.ly/FollowTimeLife Follow Time Life on INSTAGRAM: http://bit.ly/CarolTimeLife
https://wn.com/Bing_Crosby_Paul_Lynde_On_The_Carol_Burnett_Show_|_Full_Episode_S5_Ep.7
The Series Finale of The Carol Burnett Show - FULL Episode: S11 Ep.24
1:38:45

The Series Finale of The Carol Burnett Show - FULL Episode: S11 Ep.24

  • Order:
  • Duration: 1:38:45
  • Uploaded Date: 26 Apr 2021
  • views: 1353130
HAPPY BIRTHDAY, CAROL! In honor of your big day, we’re taking a stroll through the glory days of The Carol Burnett Show with the double length series finale. Grab a bowl of popcorn, a comfy seat, (maybe a box of tissues), and enjoy 'A Special Evening with Carol Burnett,' the FULL FINALE (for FREE!) right here... #CarolBurnett #TheCarolBurnettShow #FullEpisode SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-carxol-burnett-show Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR. https://www.shoutfactorytv.com/
https://wn.com/The_Series_Finale_Of_The_Carol_Burnett_Show_Full_Episode_S11_Ep.24
Peter Lawford & Minnie Pearl Take the Stage on The Carol Burnett Show | FULL Episode: S1 Ep27
51:07

Peter Lawford & Minnie Pearl Take the Stage on The Carol Burnett Show | FULL Episode: S1 Ep27

  • Order:
  • Duration: 51:07
  • Uploaded Date: 03 Nov 2023
  • views: 27102
Peter Lawford shows off his impeccable acting skills while Minnie Pearl has the crowd holding their stomachs with her stand up comedy on The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #Understudy SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/ Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR. https://www.shoutfactorytv.com/
https://wn.com/Peter_Lawford_Minnie_Pearl_Take_The_Stage_On_The_Carol_Burnett_Show_|_Full_Episode_S1_Ep27
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clip
    7:26
    A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clipremove from playlist
  • The Dentist from The Carol Burnett Show (full sketch)
    9:18
    The Dentist from The Carol Burnett Show (full sketch)remove from playlist
  • Best of Actors Breaking Character 🤣 The Carol Burnett Show
    15:14
    Best of Actors Breaking Character 🤣 The Carol Burnett Showremove from playlist
  • The Lowest Cost Airline You Can Imagine | The Carol Burnett Show Clip
    8:51
    The Lowest Cost Airline You Can Imagine | The Carol Burnett Show Clipremove from playlist
  • Carol Plays the Maid | The Carol Burnett Show Clip
    8:40
    Carol Plays the Maid | The Carol Burnett Show Clipremove from playlist
  • Carol Burnett Show outtakes - Tim Conway's Elephant Story
    4:56
    Carol Burnett Show outtakes - Tim Conway's Elephant Storyremove from playlist
  • Tim Conway Cracks Australia Up on The Carol Burnett Show | FULL Episode: S7 Ep11
    50:57
    Tim Conway Cracks Australia Up on The Carol Burnett Show | FULL Episode: S7 Ep11remove from playlist
  • Bing Crosby & Paul Lynde on The Carol Burnett Show | FULL Episode: S5 Ep.7
    51:17
    Bing Crosby & Paul Lynde on The Carol Burnett Show | FULL Episode: S5 Ep.7remove from playlist
  • The Series Finale of The Carol Burnett Show - FULL Episode: S11 Ep.24
    1:38:45
    The Series Finale of The Carol Burnett Show - FULL Episode: S11 Ep.24remove from playlist
  • Peter Lawford & Minnie Pearl Take the Stage on The Carol Burnett Show | FULL Episode: S1 Ep27
    51:07
    Peter Lawford & Minnie Pearl Take the Stage on The Carol Burnett Show | FULL Episode: S1 Ep27remove from playlist
developed with YouTube
PLAYLIST TIME:

A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clip

A girl scout must always do what is right! Sketch from season 2, episode 21 of The Carol Burnett Show. #CarolBurnett #TheCarolBurnettShow #GirlScouts   SUBSCRIBE to The Carol Burnett Show YouTube: https://tinyurl.com/CarolBurnettYT WATCH The Carol Burnett Show TV: http://TheCarolBurnettShow.tv/ WATCH MORE On Demand: https://shoutfactorytv.com/series/the-best-of-the-carol-burnett-show-series   Watch The Carol Burnett Show 24/7: http://TheCarolBurnettShow.tv/   Cited as one of the best TV shows of all time by TV Guide, Entertainment Weekly, TIME, Rolling Stone, and others, “The Carol Burnett Show” is among the originators of the sketch comedy format. All 11 seasons of one of the most acclaimed and influential TV series of all-time, and the winner of 25 Emmy® Awards, “The Carol Burnett Show,” is available for viewing on ShoutFactoryTV.com; Shout! Factory TV’s Roku, Amazon Fire, Apple TV, and Android apps; and the following digital streaming platforms: Twitch, Samsung TV Plus, Comcast Xfinity, Xumo, YouTube, Redbox, Vizio, Pluto TV, IMDb, and STIRR.   https://www.shoutfactorytv.com/
7:26
A Girl Scout Badge for...Stopping an Affair!? | The Carol Burnett Show Clip
A girl scout must always do what is right! Sketch from season 2, episode 21 of The Carol B...
published: 08 Nov 2023
Play in Full Screen
9:18
The Dentist from The Carol Burnett Show (full sketch)
Tim Conway & Harvey Korman star in "The Dentist" – one of the most popular sketches from T...
published: 09 May 2019
Play in Full Screen
15:14
Best of Actors Breaking Character 🤣 The Carol Burnett Show
These sketches are so hilarious that even the cast has trouble keeping it together. Laugh ...
published: 24 Aug 2022
Play in Full Screen
8:51
The Lowest Cost Airline You Can Imagine | The Carol Burnett Show Clip
They might even charge for the air you breathe! Sketch from season 9, episode 1 of The Car...
published: 20 Jun 2023
Play in Full Screen
8:40
Carol Plays the Maid | The Carol Burnett Show Clip
Carol acts like the maid for a day. Sketch from season 2, episode 24 of The Carol Burnett ...
published: 03 Nov 2023
Play in Full Screen
4:56
Carol Burnett Show outtakes - Tim Conway's Elephant Story
Tim Conway destroys his castmates during a "Mama's Family" sketch on the "Carol Burnett Sh...
published: 15 May 2007
Play in Full Screen
50:57
Tim Conway Cracks Australia Up on The Carol Burnett Show | FULL Episode: S7 Ep11
Carol's crew goes down under to make Australia laugh on this full episode of The Carol Bur...
published: 28 Sep 2023
Play in Full Screen
51:17
Bing Crosby & Paul Lynde on The Carol Burnett Show | FULL Episode: S5 Ep.7
In honor of Carol’s birth month – Happy (almost) Birthday, Carol!!! – we’re posting a FULL...
published: 15 Apr 2021
Play in Full Screen
1:38:45
The Series Finale of The Carol Burnett Show - FULL Episode: S11 Ep.24
HAPPY BIRTHDAY, CAROL! In honor of your big day, we’re taking a stroll through the glory d...
published: 26 Apr 2021
Play in Full Screen
51:07
Peter Lawford & Minnie Pearl Take the Stage on The Carol Burnett Show | FULL Episode: S1 Ep27
Peter Lawford shows off his impeccable acting skills while Minnie Pearl has the crowd hold...
published: 03 Nov 2023
Play in Full Screen

Carol Burnett

Carol Creighton Burnett (born April 26, 1933) is an American actress, comedian, singer, and writer. She is best known for her long-running TV variety show, The Carol Burnett Show, for CBS. She has achieved success on stage, television, and film in varying genres including dramatic and comedy roles.

Born in San Antonio, Texas to alcoholic parents, Burnett moved with her grandmother to Hollywood, where she attended Hollywood High School and eventually studied theater and musical comedy at UCLA. Later she performed in nightclubs in New York City and had a breakout success on Broadway in 1959 in Once Upon a Mattress, for which she received a Tony Award nomination. She soon made her television debut, regularly appearing on The Garry Moore Show for the next three years, and won her first Emmy Award in 1962. Burnett moved to Los Angeles, California, and began an 11-year run as star of The Carol Burnett Show on CBS television from 1967 to 1978. With its vaudeville roots, The Carol Burnett Show was a variety show that combined comedy sketches with song and dance. The comedy sketches included film parodies and character pieces. Burnett created many memorable characters during the show's television run, and both she and the show won numerous Emmy and Golden Globe Awards.

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