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

Ellen Page

Ellen Philpotts-Page (born February 21, 1987), known professionally as Ellen Page, is a Canadian actress. She started her career in Canada with roles in television shows including Pit Pony, Trailer Park Boys, and ReGenesis. Page then ventured into mainstream films, winning attention after starring in the 2005 drama Hard Candy, a role that won her the Austin Film Critics Association Award for Best Actress. Her breakthrough role was the title character in Jason Reitman's comedy film Juno (2007), for which she received nominations for Academy Award, BAFTA, Golden Globe and Screen Actors Guild Award for Best Actress, and won numerous other accolades including the Independent Spirit Award, MTV Movie Award and Teen Choice Award for Best Actress Comedy.

Her other notable film roles have been in the X-Men series, portraying Kitty Pryde in X-Men: The Last Stand (2006) and X-Men: Days of Future Past (2014). Her performance earned her a nomination for Teen Choice Award for Choice Movie Scene Stealer. Then followed crime-drama film An American Crime (2007); drama The Tracey Fragments (2007), a role that won her the Vancouver Film Critics Award for Best Actress; Smart People (2008); sports comedy-drama film Whip It (2009); Super (2010); and Inception (2010). She also provided the voice acting, motion capture, and likeness for the character Jodie Holmes in the video game Beyond: Two Souls (2013).

Podcasts:

  • Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSA

    Ellen Page was best known for her roles in Juno, Inception and the X Men franchise before she landed a role on Netflix’s The Umbrella Academy. But a lot has changed for this actor. In 2014, Ellen joined the lgbtq on Valentine’s Day, with Ellen Page coming out speech at a human rights campaign. Since coming out, the actress has been open about her gender identity and sexual orientation. In fact, she even married Emma Portner. This video is not just about Ellen page coming out as transgender, or about Ellen Page and Emma Portner. It’s about his real-life story, and we’re discussing Elliot Page lifestyle, and Ellen Page life story! Since Elliot announced that he is trans, he is a transgender man now in a transgender couple. But what does this transition mean for the now transgender acto...

    published: 06 Dec 2020
  • Actress Ellen Page Declares She is a Man Named Elliot

    LIKE & SUBSCRIBE for new videos every day. http://bit.ly/2QA8RbN Watch the full episode here: https://bit.ly/3lxqHdg Watch full episodes of The Ben Shapiro Show here: https://bit.ly/3kKIgXt To watch the full show live, become a Daily Wire Insider member and get access to our entire video catalog, plus your own Leftist Tears Tumbler! 10% off your membership with code YOUTUBE: https://utm.io/uqGw

    published: 03 Dec 2020
  • Ellen Page Calls Out Hateful Leadership

    'The Umbrella Academy' star Ellen Page puts it pretty simply: 'This needs to f***ing stop.' Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow "The Late Show" on Tumblr HERE: http://bit.ly/29DVvtR Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get the CBS app for iPhone & iPad! Click HERE: http://bit.ly/12rLxg...

    published: 01 Feb 2019
  • Elliot Page Tears Up Discussing the JOY of His Transition With Oprah Winfrey

    Elliot Page tears up in the trailer for his interview with Oprah Winfrey in ‘The Oprah Conversation’ that airs April 30 on AppleTV+. The Oscar-nominated actor opens up about the joy he’s experienced during his transition, and what it was like to come out as trans. In an interview with Vanity Fair this month, Page says this interview ‘felt like an opportunity to use a wide-reaching platform to speak from my heart about some of my experience and the resources I’ve been able to access—whether therapy or surgery—that have allowed me to be alive, to live my life.’ Exclusives from #ETonline : https://www.youtube.com/playlist?list=PLQwITQ__CeH2Y_7g2xeiNDa0vQsROQQgv

    published: 29 Apr 2021
  • Boys and Girls Ellen Page Dated!

    Ellen Page Hookups and Love Affairs! Ellen Page Dating Timeline! Ellen Page 2016! Ellen Page Dating Who? Ellen Page New Boyfriend? Track : Reatch - Funk City [Creative Commons] https://www.youtube.com/watch?v=yPx-WpR2zsk Support Reatch: https://www.youtube.com/user/ReatchOf... https://www.facebook.com/ReatchOfficial https://soundcloud.com/reatch https://twitter.com/Reatchofficial All images and music copyright to their respective owners and used under the fair use copyright law, section 107

    published: 02 Nov 2016
  • (HQ) Ellen Page on Jonathan Ross 2010.07.09

    full interview, please resubscribe etc. Note: film preview shortened for copyright.

    published: 10 Jul 2010
  • SHOCKING: Topless Photo of Ellen (Elliot) Page PRAISED by Progressives

    LIKE & SUBSCRIBE for new videos everyday. http://bit.ly/2QA8RbN  Ellen Elliot Page posted a photo to her Instagram, showing off her “transitioned” body by the pool. Watch the full episode here: https://bit.ly/3fpDajv Watch full episodes of The Michael Knowles Show here: https://bit.ly/3oEAQaF Don’t miss 'CANDACE,' the Daily Wire’s new show starring conservative lightning rod, Candace Owens. Join today:  https://utm.io/udcMK

    published: 25 May 2021
  • Ellen Page Has Mad Juggling Skillz | CONAN on TBS

    Sure, it looks super-fun, but it came from Ellen being incredibly lonely on film sets. Subscribe to watch more Team Coco videos https://www.youtube.com/channel/UCi7GJNg51C3jgmYTUwqoUXA?sub_confirmation=1 Watch more videos on Team Coco http://teamcoco.com/video FOLLOW TEAM COCO ON SOCIAL Team Coco on Facebook https://www.facebook.com/teamcoco Team Coco on Twitter https://twitter.com/teamcoco Team Coco on Instagram https://www.instagram.com/teamcoco/ ABOUT CONAN ON TBS Airing weeknights since 2010, CONAN on TBS is home to topical monologues, remote segments, celebrity interviews, musical performances and stand-up from the top comedians in the world. Watch highlights, outtakes and behind the scenes footage of Conan palling around with sidekick Andy Richter, tormenting Associate Producer J...

    published: 04 Jun 2013
  • Why Did Elliot Page And His Wife Divorce After His Transition? | Rumour Juice

    After years of having to bottle himself up, he reintroduced himself to the world as Elliot Page. But it seems like his transformation came at a price, and just two months after making his life-changing announcement, Elliot and his wife of 3 years called it quits. The question on everybody's minds is ... Did it maybe have something to do with his transition? Why Did Elliot Page And His Wife Divorce After His Transition? Subscribe to Rumour Juice channel on Youtube for more unknown stories about celebrities: @ #ElliotPage #UmbrellaAcademy #EmmaPortner #Juno #Elliotpagelove #ElliotPage2021#RumourJuice #StoryAboutCelebrity

    published: 28 May 2021
Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSA
11:58

Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSA

  • Order:
  • Duration: 11:58
  • Uploaded Date: 06 Dec 2020
  • views: 548872
Ellen Page was best known for her roles in Juno, Inception and the X Men franchise before she landed a role on Netflix’s The Umbrella Academy. But a lot has changed for this actor. In 2014, Ellen joined the lgbtq on Valentine’s Day, with Ellen Page coming out speech at a human rights campaign. Since coming out, the actress has been open about her gender identity and sexual orientation. In fact, she even married Emma Portner. This video is not just about Ellen page coming out as transgender, or about Ellen Page and Emma Portner. It’s about his real-life story, and we’re discussing Elliot Page lifestyle, and Ellen Page life story! Since Elliot announced that he is trans, he is a transgender man now in a transgender couple. But what does this transition mean for the now transgender actor? Only time will tell. For now, we’re excited to see how he flourishes with his new gender, and what Elliot Page romance with Emma will be like in the future. ⭐OSSA is the best source for entertainment news about the celebrities we love. ⭐Our YouTube channel dishes up celebrity news and gossip on the stars you admire the most. From popular TV hosts to Hollywood golden age actresses, from country music artists and the royal family members to western movies acting legends. SUBSCRIBE to our channel to watch more amazing videos about celebs! OSSA on Instagram https://www.instagram.com/ossa.tv OSSA on TikTok https://vm.tiktok.com/END6Ra/ OSSA on twitter: https://twitter.com/ossa_celebs OSSA on facebook: https://www.facebook.com/OSSA-937878333055503/
https://wn.com/Ellen_Page_To_Elliot_Page_His_Real_Life_Story_|⭐_Ossa
Actress Ellen Page Declares She is a Man Named Elliot
9:17

Actress Ellen Page Declares She is a Man Named Elliot

  • Order:
  • Duration: 9:17
  • Uploaded Date: 03 Dec 2020
  • views: 2968439
LIKE & SUBSCRIBE for new videos every day. http://bit.ly/2QA8RbN Watch the full episode here: https://bit.ly/3lxqHdg Watch full episodes of The Ben Shapiro Show here: https://bit.ly/3kKIgXt To watch the full show live, become a Daily Wire Insider member and get access to our entire video catalog, plus your own Leftist Tears Tumbler! 10% off your membership with code YOUTUBE: https://utm.io/uqGw
https://wn.com/Actress_Ellen_Page_Declares_She_Is_A_Man_Named_Elliot
Ellen Page Calls Out Hateful Leadership
9:41

Ellen Page Calls Out Hateful Leadership

  • Order:
  • Duration: 9:41
  • Uploaded Date: 01 Feb 2019
  • views: 2241109
'The Umbrella Academy' star Ellen Page puts it pretty simply: 'This needs to f***ing stop.' Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow "The Late Show" on Tumblr HERE: http://bit.ly/29DVvtR Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get the CBS app for iPhone & iPad! Click HERE: http://bit.ly/12rLxge Get new episodes of shows you love across devices the next day, stream live TV, and watch full seasons of CBS fan favorites anytime, anywhere with CBS All Access. Try it free! http://bit.ly/1OQA29B --- The Late Show with Stephen Colbert is the premier late night talk show on CBS, airing at 11:35pm EST, streaming online via CBS All Access, and delivered to the International Space Station on a USB drive taped to a weather balloon. Every night, viewers can expect: Comedy, humor, funny moments, witty interviews, celebrities, famous people, movie stars, bits, humorous celebrities doing bits, funny celebs, big group photos of every star from Hollywood, even the reclusive ones, plus also jokes.
https://wn.com/Ellen_Page_Calls_Out_Hateful_Leadership
Elliot Page Tears Up Discussing the JOY of His Transition With Oprah Winfrey
3:01

Elliot Page Tears Up Discussing the JOY of His Transition With Oprah Winfrey

  • Order:
  • Duration: 3:01
  • Uploaded Date: 29 Apr 2021
  • views: 1390763
Elliot Page tears up in the trailer for his interview with Oprah Winfrey in ‘The Oprah Conversation’ that airs April 30 on AppleTV+. The Oscar-nominated actor opens up about the joy he’s experienced during his transition, and what it was like to come out as trans. In an interview with Vanity Fair this month, Page says this interview ‘felt like an opportunity to use a wide-reaching platform to speak from my heart about some of my experience and the resources I’ve been able to access—whether therapy or surgery—that have allowed me to be alive, to live my life.’ Exclusives from #ETonline : https://www.youtube.com/playlist?list=PLQwITQ__CeH2Y_7g2xeiNDa0vQsROQQgv
https://wn.com/Elliot_Page_Tears_Up_Discussing_The_Joy_Of_His_Transition_With_Oprah_Winfrey
Boys and Girls Ellen Page Dated!
2:20

Boys and Girls Ellen Page Dated!

  • Order:
  • Duration: 2:20
  • Uploaded Date: 02 Nov 2016
  • views: 439586
Ellen Page Hookups and Love Affairs! Ellen Page Dating Timeline! Ellen Page 2016! Ellen Page Dating Who? Ellen Page New Boyfriend? Track : Reatch - Funk City [Creative Commons] https://www.youtube.com/watch?v=yPx-WpR2zsk Support Reatch: https://www.youtube.com/user/ReatchOf... https://www.facebook.com/ReatchOfficial https://soundcloud.com/reatch https://twitter.com/Reatchofficial All images and music copyright to their respective owners and used under the fair use copyright law, section 107
https://wn.com/Boys_And_Girls_Ellen_Page_Dated
(HQ) Ellen Page on Jonathan Ross 2010.07.09
9:07

(HQ) Ellen Page on Jonathan Ross 2010.07.09

  • Order:
  • Duration: 9:07
  • Uploaded Date: 10 Jul 2010
  • views: 931522
full interview, please resubscribe etc. Note: film preview shortened for copyright.
https://wn.com/(Hq)_Ellen_Page_On_Jonathan_Ross_2010.07.09
SHOCKING: Topless Photo of Ellen (Elliot) Page PRAISED by Progressives
3:04

SHOCKING: Topless Photo of Ellen (Elliot) Page PRAISED by Progressives

  • Order:
  • Duration: 3:04
  • Uploaded Date: 25 May 2021
  • views: 232100
LIKE & SUBSCRIBE for new videos everyday. http://bit.ly/2QA8RbN  Ellen Elliot Page posted a photo to her Instagram, showing off her “transitioned” body by the pool. Watch the full episode here: https://bit.ly/3fpDajv Watch full episodes of The Michael Knowles Show here: https://bit.ly/3oEAQaF Don’t miss 'CANDACE,' the Daily Wire’s new show starring conservative lightning rod, Candace Owens. Join today:  https://utm.io/udcMK
https://wn.com/Shocking_Topless_Photo_Of_Ellen_(Elliot)_Page_Praised_By_Progressives
Ellen Page Has Mad Juggling Skillz | CONAN on TBS
4:31

Ellen Page Has Mad Juggling Skillz | CONAN on TBS

  • Order:
  • Duration: 4:31
  • Uploaded Date: 04 Jun 2013
  • views: 2057814
Sure, it looks super-fun, but it came from Ellen being incredibly lonely on film sets. Subscribe to watch more Team Coco videos https://www.youtube.com/channel/UCi7GJNg51C3jgmYTUwqoUXA?sub_confirmation=1 Watch more videos on Team Coco http://teamcoco.com/video FOLLOW TEAM COCO ON SOCIAL Team Coco on Facebook https://www.facebook.com/teamcoco Team Coco on Twitter https://twitter.com/teamcoco Team Coco on Instagram https://www.instagram.com/teamcoco/ ABOUT CONAN ON TBS Airing weeknights since 2010, CONAN on TBS is home to topical monologues, remote segments, celebrity interviews, musical performances and stand-up from the top comedians in the world. Watch highlights, outtakes and behind the scenes footage of Conan palling around with sidekick Andy Richter, tormenting Associate Producer Jordan Schlansky and playing the latest video games on Clueless Gamer. ABOUT TEAM COCO Team Coco is the YouTube home for all things Conan O’Brien and the Team Coco Podcast Network. Team Coco features over 25 years of comedy sketches, celebrity interviews and stand-up comedy sets from CONAN on TBS and Late Night with Conan O’Brien, as well as exclusive videos from podcasts like Conan O’Brien Needs a Friend, Literally! with Rob Lowe, Why Won’t You Date Me? with Nicole Byer, The Three Questions with Andy Richter, May I Elaborate? with JB Smoove and Scam Goddess with Laci Mosley. Ellen Page Has Mad Juggling Skillz | CONAN on TBS https://www.youtube.com/c/TeamCoco
https://wn.com/Ellen_Page_Has_Mad_Juggling_Skillz_|_Conan_On_Tbs
Why Did Elliot Page And His Wife Divorce After His Transition? | Rumour Juice
10:10

Why Did Elliot Page And His Wife Divorce After His Transition? | Rumour Juice

  • Order:
  • Duration: 10:10
  • Uploaded Date: 28 May 2021
  • views: 213415
After years of having to bottle himself up, he reintroduced himself to the world as Elliot Page. But it seems like his transformation came at a price, and just two months after making his life-changing announcement, Elliot and his wife of 3 years called it quits. The question on everybody's minds is ... Did it maybe have something to do with his transition? Why Did Elliot Page And His Wife Divorce After His Transition? Subscribe to Rumour Juice channel on Youtube for more unknown stories about celebrities: @ #ElliotPage #UmbrellaAcademy #EmmaPortner #Juno #Elliotpagelove #ElliotPage2021#RumourJuice #StoryAboutCelebrity
https://wn.com/Why_Did_Elliot_Page_And_His_Wife_Divorce_After_His_Transition_|_Rumour_Juice
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSA
    11:58
    Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSAremove from playlist
  • Actress Ellen Page Declares She is a Man Named Elliot
    9:17
    Actress Ellen Page Declares She is a Man Named Elliotremove from playlist
  • Ellen Page Calls Out Hateful Leadership
    9:41
    Ellen Page Calls Out Hateful Leadershipremove from playlist
  • Elliot Page Tears Up Discussing the JOY of His Transition With Oprah Winfrey
    3:01
    Elliot Page Tears Up Discussing the JOY of His Transition With Oprah Winfreyremove from playlist
  • Boys and Girls Ellen Page Dated!
    2:20
    Boys and Girls Ellen Page Dated!remove from playlist
  • (HQ) Ellen Page on Jonathan Ross 2010.07.09
    9:07
    (HQ) Ellen Page on Jonathan Ross 2010.07.09remove from playlist
  • SHOCKING: Topless Photo of Ellen (Elliot) Page PRAISED by Progressives
    3:04
    SHOCKING: Topless Photo of Ellen (Elliot) Page PRAISED by Progressivesremove from playlist
  • Ellen Page Has Mad Juggling Skillz | CONAN on TBS
    4:31
    Ellen Page Has Mad Juggling Skillz | CONAN on TBSremove from playlist
  • Why Did Elliot Page And His Wife Divorce After His Transition? | Rumour Juice
    10:10
    Why Did Elliot Page And His Wife Divorce After His Transition? | Rumour Juiceremove from playlist
PLAYLIST TIME: 0:00 / 1:03:09

Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSA

Ellen Page was best known for her roles in Juno, Inception and the X Men franchise before she landed a role on Netflix’s The Umbrella Academy. But a lot has changed for this actor. In 2014, Ellen joined the lgbtq on Valentine’s Day, with Ellen Page coming out speech at a human rights campaign. Since coming out, the actress has been open about her gender identity and sexual orientation. In fact, she even married Emma Portner. This video is not just about Ellen page coming out as transgender, or about Ellen Page and Emma Portner. It’s about his real-life story, and we’re discussing Elliot Page lifestyle, and Ellen Page life story! Since Elliot announced that he is trans, he is a transgender man now in a transgender couple. But what does this transition mean for the now transgender actor? Only time will tell. For now, we’re excited to see how he flourishes with his new gender, and what Elliot Page romance with Emma will be like in the future. ⭐OSSA is the best source for entertainment news about the celebrities we love. ⭐Our YouTube channel dishes up celebrity news and gossip on the stars you admire the most. From popular TV hosts to Hollywood golden age actresses, from country music artists and the royal family members to western movies acting legends. SUBSCRIBE to our channel to watch more amazing videos about celebs! OSSA on Instagram https://www.instagram.com/ossa.tv OSSA on TikTok https://vm.tiktok.com/END6Ra/ OSSA on twitter: https://twitter.com/ossa_celebs OSSA on facebook: https://www.facebook.com/OSSA-937878333055503/
11:58
Ellen Page to Elliot Page: His Real-Life Story |⭐ OSSA
Ellen Page was best known for her roles in Juno, Inception and the X Men franchise before ...
published: 06 Dec 2020
Play in Full Screen
9:17
Actress Ellen Page Declares She is a Man Named Elliot
LIKE & SUBSCRIBE for new videos every day. http://bit.ly/2QA8RbN Watch the full episode h...
published: 03 Dec 2020
Play in Full Screen
9:41
Ellen Page Calls Out Hateful Leadership
'The Umbrella Academy' star Ellen Page puts it pretty simply: 'This needs to f***ing stop....
published: 01 Feb 2019
Play in Full Screen
3:01
Elliot Page Tears Up Discussing the JOY of His Transition With Oprah Winfrey
Elliot Page tears up in the trailer for his interview with Oprah Winfrey in ‘The Oprah Con...
published: 29 Apr 2021
Play in Full Screen
2:20
Boys and Girls Ellen Page Dated!
Ellen Page Hookups and Love Affairs! Ellen Page Dating Timeline! Ellen Page 2016! Ellen...
published: 02 Nov 2016
Play in Full Screen
9:07
(HQ) Ellen Page on Jonathan Ross 2010.07.09
full interview, please resubscribe etc. Note: film preview shortened for copyright.
published: 10 Jul 2010
Play in Full Screen
3:04
SHOCKING: Topless Photo of Ellen (Elliot) Page PRAISED by Progressives
LIKE & SUBSCRIBE for new videos everyday. http://bit.ly/2QA8RbN  Ellen Elliot Page posted...
published: 25 May 2021
Play in Full Screen
4:31
Ellen Page Has Mad Juggling Skillz | CONAN on TBS
Sure, it looks super-fun, but it came from Ellen being incredibly lonely on film sets. S...
published: 04 Jun 2013
Play in Full Screen
10:10
Why Did Elliot Page And His Wife Divorce After His Transition? | Rumour Juice
After years of having to bottle himself up, he reintroduced himself to the world as Elliot...
published: 28 May 2021
Play in Full Screen

Ellen Page

Ellen Philpotts-Page (born February 21, 1987), known professionally as Ellen Page, is a Canadian actress. She started her career in Canada with roles in television shows including Pit Pony, Trailer Park Boys, and ReGenesis. Page then ventured into mainstream films, winning attention after starring in the 2005 drama Hard Candy, a role that won her the Austin Film Critics Association Award for Best Actress. Her breakthrough role was the title character in Jason Reitman's comedy film Juno (2007), for which she received nominations for Academy Award, BAFTA, Golden Globe and Screen Actors Guild Award for Best Actress, and won numerous other accolades including the Independent Spirit Award, MTV Movie Award and Teen Choice Award for Best Actress Comedy.

Her other notable film roles have been in the X-Men series, portraying Kitty Pryde in X-Men: The Last Stand (2006) and X-Men: Days of Future Past (2014). Her performance earned her a nomination for Teen Choice Award for Choice Movie Scene Stealer. Then followed crime-drama film An American Crime (2007); drama The Tracey Fragments (2007), a role that won her the Vancouver Film Critics Award for Best Actress; Smart People (2008); sports comedy-drama film Whip It (2009); Super (2010); and Inception (2010). She also provided the voice acting, motion capture, and likeness for the character Jodie Holmes in the video game Beyond: Two Souls (2013).

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

Latest News for: Ellen Page

Edit

George Wilton Phillips, 85

The Chester News & Reporter 30 Mar 2025
LITTLE RIVER, S.C.George Wilton Phillips, 85, of Little River, S.C. died Friday, March 14, 2025. He was born on Aug. 5, 1939, in Lancaster, S.C. to the late George W. Phillips and Mary Ellen Rowell Phillips. × This page requires Javascript ... ....
Edit

Linda Chesser Montgomery, 79

The Kentucky Standard 30 Mar 2025
She was born in Jefferson County, Kentucky on February 21, 1946, to the late Acy and Dora Ellen Hood Chesser. × This page requires Javascript. Javascript is required for you to be able to read premium content ... ....
Edit

The charming, lovely Mary Ellen Youngblut (1923-2025)

Oelwein Daily Register 28 Mar 2025
The charming, lovely Mary Ellen Youngblut volunteered to tell me her story ... I visited Mary Ellen a few more times after the interview and provided her with pages of the manuscript alluding to her personal story for review.
Edit

Metro Mix’s small but mighty tenor section | Music Column

Iowa City Press-Citizen 28 Mar 2025
Metro Mix Chorus of Sweet Adelines International has a busy schedule this year ... Watch our Facebook page (MetroMixChorusIowa) for more information about this and more events this year. Ellen Hanson joined Sweet Adelines International in 2009 ...
Edit

The George Foreman story is uniquely American. He starred in the ring as well as the kitchen

News Journal - Daytona Beach 27 Mar 2025
From Nathan Hale to Daniel Boone to Jackie Robinson to Chuck Yeager, the book of Great American Lives has many chapters, but by God you just can’t write that book without a few pages on George Foreman, who embodied so much of what we’re about ... ELLEN.
Edit

Bobby Royalty, 89

The Kentucky Standard 26 Mar 2025
27, 1935 ... He was preceded in death by his parents, Marshall and Dorothy Royalty; a stepdaughter, Debra Hall; and two sisters, Carol Speakman and Ellen Burba. × This page requires Javascript ... ....
Edit

Bernetha \u201cBootsie\u201d Foley

The Kentucky Standard 26 Mar 2025
Born on March 14, 1951, in Liberty, Kentucky, she was a daughter of the late Joseph Freeman and Ora Ellen Scott Monday. × This page requires Javascript ... ....
Edit

RFRA oral history part 2: Disastrous Stephanopolous interview leads to FRFA 'fix'

IndyStar 26 Mar 2025
But in (an editorial board) meeting Karen said, ‘I want to put it on the front page of tomorrow’s paper.’” ... “People were sharing the image of the print page on Twitter ... Ellen DeGeneres ... tweeted out a copy of the page, and it went viral then.
Edit

Social Security chief: DOGE access to systems revoked after court order

The Hill 25 Mar 2025
District Judge Ellen Hollander issued a 137-page opinion on Thursday upholding her decision to temporarily block DOGE’s access to citizens' sensitive information while outlining the potential harm of ...
Edit

US judge blocks Elon Musk team from accessing sensitive Social Security data

Anadolu Agency 21 Mar 2025
In a 137-page decision, District Judge Ellen Hollander wrote Thursday that a group of unions challenging the Musk team’s access to systems of records at the Social Security Administration was ...
Edit

Leftwing activist group says it reserved hundreds of seats at Rep. Baumgartner’s tumultuous town hall

The Spokesman-Review 21 Mar 2025
“I don’t know for certain, but I would venture to say probably 400 were Indivisible members,” said Mary Ellen Gaffney-Brown, an administrator for the Spokane Indivisible Group Facebook page.
Edit

Ellen DeGeneres and Portia de Rossi celebrate their 20-year anniversary after UK move

New York Post 20 Mar 2025
Ellen DeGeneres and Portia de Rossi are celebrating their love ... Ellen DeGeneres and Portia de Rossi celebrate their 20-year anniversary. Ellen DeGeneres/Instagram ... Ellen Degeneres and Portia de Rossi during HBO Golden Globe Awards Party.
Edit

Federal Judge Blocks DOGE From Accessing Social Security Information for Now

The Epoch Times 20 Mar 2025
In a 137-page temporary restraining order, U.S. District Judge Ellen Hollander wrote that DOGE also must delete any personally identifiable data that it may have in its ...
Edit

Judge Calls DOGE Out Over Privacy Concerns In Social Security Case

Newsweek 20 Mar 2025
U.S. District Judge Ellen Hollander said she found DOGE's concerns over privacy ironic in a 137-page ruling ....
Edit

Judge temporarily blocks DOGE access to Social Security records

The Hill 20 Mar 2025
In a scathing, 137-page opinion, U.S. District Judge Ellen Hollander sharply questioned DOGE’s unfettered access to Americans’ personally identifiable information ... ....
×