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

Jack Neo

Jack Neo (born Neo Chee Keong, 24 January 1956), PBM, is a Singaporean film and television actor, host and director. He is best known for his cross-dressing roles, as Liang Popo (literally: Granny Liang) in the 1999 film Liang Po Po: The Movie and as Liang Ximei in the late 1990s television comedy show Comedy Night.

Career

Neo found his calling when at the age of 14, he wrote and acted in a comedy skit for Tanjong Katong Secondary School.

Neo started his career on television in 1980 and became one of the most successful and recognisable celebrities in MediaCorp for his comedic roles on film and television. His two most notable cross-dressing roles on film and television are that of Liang Po Po and Liang Xi Mei, both skits in the long-running comedy variety show Comedy Night. Neo made his directorial debut in That One Not Enough (1999) and he set up his own artiste management company, J Team Productions, whose members include comedians Mark Lee, Henry Thia and John Cheng.

Neo's films satirise several aspects about Singapore in comical ways, including societal issues such as negligent parenting and school corporal punishment, and foreign issues such as the water disputes between Singapore and Malaysia. Apart from his film and TV career, Neo has also recorded and produced a number of albums.

Podcasts:

  • Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asks

    We hear you like men with a sense of humour. Here's three of them: Henry Thia, 18, Jack Neo, 16, and Mark Lee, 14. Catch "Diam Diam Era Too" in theatres from February 11, 2021. But you can read our interview with them first: https://mothership.sg/.../jack-neo-mark-lee-henry-thia.../ Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔

    published: 13 Feb 2021
  • Jack Neo 梁志强《我们都一样 We Are All The Same》Official Music Video

    感谢大家对这首歌的赞赏,现在给大家高清版和卡拉版,鼓励大家也跟着唱

    published: 25 Apr 2020
  • Jack Neo threatened to fire an actress on set! 梁志强片场恫言要开除某女演员!#justswipelah

    Director Jack Neo is bringing Xixi Lim to try his favourite Bak Chor Mee that he's been eating for over 10 years! Jack also introduces a Farm-to-Table Fish Soup with various kinds of fresh fish at affordable prices! How did Jack go from Singapore's favourite comedian to become a director? He almost fired an actress from his set? Jack is going to have a one-man talk show? Watch on to find out more! #foodswipe If you have any interesting ideas for #JustSwipeLah to feature, drop us an email at contacts@smilingmedia.sg 名导梁志强带林茜茜品尝他最爱的肉脞面,吃了十多年也不厌倦!梁导也推荐一个贯彻“从农村到餐桌”概念的鱼汤食肆,价格公道,新鲜渔获种类多。从本地最受欢迎的喜剧演员到百万票房电影导演,梁导一路走来经历了什么?听说他还差点当场开除女演员,发生什么事?!梁导还透露,将推出单人脱口秀!点击看进来! #刷美食 如果你有任何有趣的点子提供给#刷一刷,欢迎电邮 contacts@smilingmedia.sg --- 👋 Welcome to Mediacorp Entertainment, your favourite channel for the late...

    published: 12 Jul 2024
  • Truck Towed Away On The 1st Day of Filming (ENG SUB)【梁导: “拍电影时钱真的不够用“】Ft. Jack Neo| R U OKAY 【你OK吗?】

    In this episode of R U Okay, we have Singapore’s biggest movie Director Jack Neo with us. In this intimate chat, Jack shared with us how he got his start, how he developed beloved characters like Liang Popo and Liang Si Mei. With his new movie recently released, Jack also shared his thoughts on Singapore’s film industry and his hopes for the future. Hosts: John Chua (https://www.instagram.com/johnathanchua/) Ryan Tan (https://www.instagram.com/ryanxgo/) Kelvin Tan (https://www.instagram.com/mayiduosg/) Charlene Huang (https://www.instagram.com/aizaiaisteady/) Guest: Jack Neo (https://www.instagram.com/jackneock/) For Business Enquiries: singapore.sales@grvty.media This channel is made in collaboration between ​⁠​⁠​⁠@TheDailyKetchupPodcast ​⁠​⁠​⁠@overkillsingapore ​⁠​⁠​⁠@doubleupsg

    published: 04 Feb 2024
  • 《钱不够用3:全部够用》 片尾曲 Official Music Video

    【钱不是问题,问题是没钱….】 “Money is not the problem. The problem is no money.” After 25years, Singapore’s most iconic movie franchise is back! Starring Jack Neo 梁志强,Mark Lee 李国煌 and Henry Thia 程旭辉,Xiang Yun 向云,Patricia Mok莫小玲,Tang Miao Ling 汤妙玲 and more! 《钱不够用3:全部够用》 MONEY NO ENOUGH 3 now showing in Singapore cinemas! #MoneyNoEnough3 #钱不够用3 #jackneo #cny2024 #梁志强 #李国煌 #钱不够用 #程旭辉 #辉哥

    published: 11 Feb 2024
  • Waiting For an Opinion: Jack Neo movies are underrated.

    Not bad what his movies. Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔

    published: 25 May 2023
  • Jack Neo "Chio BU"

    ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ TAGS, IGNORE IT: obama drift ex plo explotion explo explosion explode ass 848 block jurong west singapore st 81 block 884 driftcity update racing in driftcity DRIFTCITY DRIFT CITY drift city pro godly private server best racing game ShidoMS ShidoMS ShinoMS ShidoMS Chance MMV Chance UverWorld Best Private Server Maplestory private server ShidoMS Guide GM maplestory private servers shidoms crush initial d lolms maplestory maplestory private servers ms godly lvl 59 dexless sin pure luck pure luk bookworm maplestory private server GMS KMS MSEA CMS how to make a maplestory private server godly pure luk sin bookworm maplestory maplesea korean maple story china maplestory dexless sin damage high lvl 59 43 44 racist mo...

    published: 16 Dec 2008
  • Henry Thia's Biggest Fight with Jack Neo!!! 《辉哥和梁导大闹一番!!!》

    Singaporean comedy icon Hui Ge (Henry Thia) takes us through the ups and downs of his 30+ year career - his early days as a calefare (at the age of 40!), being paid $2,000 for Money No Enough, and his sometimes-rocky relationship with Jack Neo and Mark Lee. Hosts: John Chua (https://www.instagram.com/johnathanchua/) Ryan Tan (https://www.instagram.com/ryanxgo/) Kelvin Tan (https://www.instagram.com/mayiduosg/) Charlene Huang (https://www.instagram.com/aizaiaisteady/) Special Guests: Henry Thia (https://www.tiktok.com/@alamakhui/) For Business Enquiries: singapore.sales@grvty.media This channel is made in collaboration between ​⁠​⁠​⁠ @TheDailyKetchupPodcast ⁠​⁠​⁠ @overkillsingapore ​⁠​⁠​⁠ @doubleupsg

    published: 11 Aug 2024
  • Freefire one tap YtBuzzard1 Nepal Bangladesh Jack oggy plays freefire

    Freefire one tap are you ready for the battle TheBuzzardYt #shortsvideoviral setup tour :https://youtube.com/shorts/tDUWQ6Vfgeo Freefire uid :10035902157 Freefire max : 📍Twitter : 📍Steam Profile :https://steamcommunity.com/profiles/76561199061610728/ 📍 Omlet Arcade : leaved Freefire one tap are you ready TheBuzzardYt is here 📍Facebook: https://www.facebook.com/GamerBuzzard 📍Discord :https://discord.gg/EkDNAK7 Phone :Samsung s24 PC Specs:- Processor AMD 5900X Ram Gskill TRIDENT Z NEO 32gb (16\16) Graphics Card AORUS GeForce RTX™ 3080 MASTER 10G Internal Drives WD_BLACK™ SN850 NVMe™ SSD HDD My Passport from WD 4TB CPU Fan Cooler Master Master Liquid ML360R RGB PSU Cooler Master V850 Gold V2, 80 Plus Gold Motherboa...

    published: 18 Oct 2024
  • MONEY NO ENOUGH 3 《钱不够用 3:全部够用》 | Trailer 1 — In Cinemas 1 February

    Release Date: 1 February 2024 in Singapore Director: Jack Neo 梁志强 Cast: Jack Neo 梁志强, Mark Lee 李国煌, Henry Thia 程旭辉 Genre: Drama, Comedy Ah Hui, Ah Qiang and Ah Huang are long-time buddies. Ah Hui, a man without big ambitions and his dominating Hui-sao, hope that their son – Roy, who has just completed his national service, will take over the family’s porridge shop. However, with Roy’s refusal, the couple is looking forward to sell their shop and retire. Ah Qiang used to be a successful entrepreneur before the pandemic. Ever since his business failed, he earns a living as a Private-hire driver. He often laments to his wife, embodying the typical struggle of someone in mid-life crisis. Ah Qiang and Qiang-sao also worries for their son – Ian, who seems to be lazing around and not actively se...

    published: 29 Dec 2023
developed with YouTube
Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asks
5:38

Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asks

  • Order:
  • Duration: 5:38
  • Uploaded Date: 13 Feb 2021
  • views: 184862
We hear you like men with a sense of humour. Here's three of them: Henry Thia, 18, Jack Neo, 16, and Mark Lee, 14. Catch "Diam Diam Era Too" in theatres from February 11, 2021. But you can read our interview with them first: https://mothership.sg/.../jack-neo-mark-lee-henry-thia.../ Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔
https://wn.com/Henry_Thia,_Jack_Neo,_Mark_Lee_|_Mothership_Instagram_Asks
Jack Neo 梁志强《我们都一样 We Are All The Same》Official Music Video
3:31

Jack Neo 梁志强《我们都一样 We Are All The Same》Official Music Video

  • Order:
  • Duration: 3:31
  • Uploaded Date: 25 Apr 2020
  • views: 153527
感谢大家对这首歌的赞赏,现在给大家高清版和卡拉版,鼓励大家也跟着唱
https://wn.com/Jack_Neo_梁志强《我们都一样_We_Are_All_The_Same》Official_Music_Video
Jack Neo threatened to fire an actress on set! 梁志强片场恫言要开除某女演员!#justswipelah
13:10

Jack Neo threatened to fire an actress on set! 梁志强片场恫言要开除某女演员!#justswipelah

  • Order:
  • Duration: 13:10
  • Uploaded Date: 12 Jul 2024
  • views: 28171
Director Jack Neo is bringing Xixi Lim to try his favourite Bak Chor Mee that he's been eating for over 10 years! Jack also introduces a Farm-to-Table Fish Soup with various kinds of fresh fish at affordable prices! How did Jack go from Singapore's favourite comedian to become a director? He almost fired an actress from his set? Jack is going to have a one-man talk show? Watch on to find out more! #foodswipe If you have any interesting ideas for #JustSwipeLah to feature, drop us an email at contacts@smilingmedia.sg 名导梁志强带林茜茜品尝他最爱的肉脞面,吃了十多年也不厌倦!梁导也推荐一个贯彻“从农村到餐桌”概念的鱼汤食肆,价格公道,新鲜渔获种类多。从本地最受欢迎的喜剧演员到百万票房电影导演,梁导一路走来经历了什么?听说他还差点当场开除女演员,发生什么事?!梁导还透露,将推出单人脱口秀!点击看进来! #刷美食 如果你有任何有趣的点子提供给#刷一刷,欢迎电邮 contacts@smilingmedia.sg --- 👋 Welcome to Mediacorp Entertainment, your favourite channel for the latest and the best of local entertainment series in English, Mandarin, Malay, and Tamil. We're part of Mediacorp, Singapore’s biggest content creator and national media network, bringing you awesome and award-winning TV shows, radio stations, and digital platforms for all your entertainment and news needs. Want more entertainment? Check out even more series for free on mewatch! Download the app or visit today. Happy watching and follow us on social! Instagram: https://www.instagram.com/mediacorp/ TikTok: https://www.tiktok.com/@mediacorp Facebook: https://www.facebook.com/mediacorp/
https://wn.com/Jack_Neo_Threatened_To_Fire_An_Actress_On_Set_梁志强片场恫言要开除某女演员!_Justswipelah
Truck Towed Away On The 1st Day of Filming (ENG SUB)【梁导: “拍电影时钱真的不够用“】Ft. Jack Neo| R U OKAY 【你OK吗?】
34:19

Truck Towed Away On The 1st Day of Filming (ENG SUB)【梁导: “拍电影时钱真的不够用“】Ft. Jack Neo| R U OKAY 【你OK吗?】

  • Order:
  • Duration: 34:19
  • Uploaded Date: 04 Feb 2024
  • views: 382543
In this episode of R U Okay, we have Singapore’s biggest movie Director Jack Neo with us. In this intimate chat, Jack shared with us how he got his start, how he developed beloved characters like Liang Popo and Liang Si Mei. With his new movie recently released, Jack also shared his thoughts on Singapore’s film industry and his hopes for the future. Hosts: John Chua (https://www.instagram.com/johnathanchua/) Ryan Tan (https://www.instagram.com/ryanxgo/) Kelvin Tan (https://www.instagram.com/mayiduosg/) Charlene Huang (https://www.instagram.com/aizaiaisteady/) Guest: Jack Neo (https://www.instagram.com/jackneock/) For Business Enquiries: singapore.sales@grvty.media This channel is made in collaboration between ​⁠​⁠​⁠@TheDailyKetchupPodcast ​⁠​⁠​⁠@overkillsingapore ​⁠​⁠​⁠@doubleupsg
https://wn.com/Truck_Towed_Away_On_The_1St_Day_Of_Filming_(Eng_Sub)【梁导_“拍电影时钱真的不够用“】Ft._Jack_Neo|_R_U_Okay_【你Ok吗_】
《钱不够用3:全部够用》 片尾曲 Official Music Video
3:40

《钱不够用3:全部够用》 片尾曲 Official Music Video

  • Order:
  • Duration: 3:40
  • Uploaded Date: 11 Feb 2024
  • views: 646097
【钱不是问题,问题是没钱….】 “Money is not the problem. The problem is no money.” After 25years, Singapore’s most iconic movie franchise is back! Starring Jack Neo 梁志强,Mark Lee 李国煌 and Henry Thia 程旭辉,Xiang Yun 向云,Patricia Mok莫小玲,Tang Miao Ling 汤妙玲 and more! 《钱不够用3:全部够用》 MONEY NO ENOUGH 3 now showing in Singapore cinemas! #MoneyNoEnough3 #钱不够用3 #jackneo #cny2024 #梁志强 #李国煌 #钱不够用 #程旭辉 #辉哥
https://wn.com/《钱不够用3:全部够用》_片尾曲_Official_Music_Video
Waiting For an Opinion: Jack Neo movies are underrated.
1:25

Waiting For an Opinion: Jack Neo movies are underrated.

  • Order:
  • Duration: 1:25
  • Uploaded Date: 25 May 2023
  • views: 1928
Not bad what his movies. Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔
https://wn.com/Waiting_For_An_Opinion_Jack_Neo_Movies_Are_Underrated.
Jack Neo "Chio BU"
0:41

Jack Neo "Chio BU"

  • Order:
  • Duration: 0:41
  • Uploaded Date: 16 Dec 2008
  • views: 2006
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ TAGS, IGNORE IT: obama drift ex plo explotion explo explosion explode ass 848 block jurong west singapore st 81 block 884 driftcity update racing in driftcity DRIFTCITY DRIFT CITY drift city pro godly private server best racing game ShidoMS ShidoMS ShinoMS ShidoMS Chance MMV Chance UverWorld Best Private Server Maplestory private server ShidoMS Guide GM maplestory private servers shidoms crush initial d lolms maplestory maplestory private servers ms godly lvl 59 dexless sin pure luck pure luk bookworm maplestory private server GMS KMS MSEA CMS how to make a maplestory private server godly pure luk sin bookworm maplestory maplesea korean maple story china maplestory dexless sin damage high lvl 59 43 44 racist most racist maplestory video shidoms most racist kurosaki bleach green 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 godly crystal iibi sony vegas pro 8.0 dexless sin bookworm ms godly super godly pure luck sin hermit custom PQ dexless sin maplestory private server maplestory private servers finalstory lagms b12ms dagonms lolms ahlongms wtfms screwms tanman ms lol ms titan source odin source 0.55 0.60 60 55 53 55 lol maplestory rocks godly people rocks dray86 maple kombat 1 2 3 4 5 bookworm maplestory private servers godly lvl 59 dexless sin , bookworm tiger fangblade 1000x exp 1000x mesos 10x drop rate maple story maplestory private server v.55 v.56 v.57 darkknight paladin NL night lord noob lol mmv assasin shadower mage cleric bishop arch mage hero 12x 13x 14x 15x 16x 17x 18x 19x 20x hacks hacker pincracker working movie v.55 v.56 v.57 v.58maple story maplestory gms ems msea maplesea video game maple story maplestory gms msea maplesea hacking hacks godmode vac demi super tubi vox hacks hax v 53 .53 Maple Story Maplestory Dcing Blazzey Begynol Sugarbabes Fm Freemarket JustineHemim Caneda25 DeadlyOrchid GwenStefani Maple story maplestory hack hackers suckz sucks high hits global chinese GMS EMS JMS the song is cool sick0w hunting ground 1 hak v0.50 50 050 v 049 49 0.49 0.48 48 048 i have hacks for you all if you want haha sorry i lied this are just some tags i want lol lol lol spam spam v0.47 047 0.47 dray xxdrayxx xxxdrayxxx dray86 maplekombat maple dream flash what ever who cares lol tiger fangblade .. all of them are cool hehe harderijkplayer oriino super high hits not normal more then 100.000 lvl level lv 1 200 199 100 120 3rd job 2nd job 1st job 4th job riding qeust or whatever aquarode victoria orbis ludi party qeust pq partyqeust p q papu mm mushmom zombie zmm i killed them all zakum Maple Story maplestory maple story MapleStory Pianus pianus kill own teddy bear teddies nexon battle fight strong die breaking benjimans banana phone raffi Linkin Park NX diary of jane Anything Chicken Chocolate dex luk int str hp mp elmo lol i Spritefan Barbie Girl Zakum Tiger FangBlade Dray Wg Ignited Orbis Aqua Rode Party Quest Papulatus Heroes Fish Ugly cheese ugly really need views. free ilbis steelys tobis mesos 1m 10000m maple sea all versions st0ry blink 182 im sorry micheal jackson iceman events part 1 2 3 4 5 6 7 jump qeust top list www.nexon.net www.maplestory.com nexon wizet www.maplesea.com www.youtube.com youtube is good north america you tube sparty wow world of warcraft cod call of duty cod4 cod1 cod2 cod3 fable final fantasy sparta guilds and all clans are welcome lol this are alot of tags everyone will find this and you just have to watch it its a really good movie haha lol gta grand the theft auto maplestory private servers pokemon online best ever naruto bleach ver naruto bleach power ranger laien wraondsao thsu is sparta stupid nick and norah in cinemas from 11 december visitt he site omg this is sparta i am nokia n81 56680 n85 this is tupid
https://wn.com/Jack_Neo_Chio_Bu
Henry Thia's Biggest Fight with Jack Neo!!! 《辉哥和梁导大闹一番!!!》
30:35

Henry Thia's Biggest Fight with Jack Neo!!! 《辉哥和梁导大闹一番!!!》

  • Order:
  • Duration: 30:35
  • Uploaded Date: 11 Aug 2024
  • views: 285190
Singaporean comedy icon Hui Ge (Henry Thia) takes us through the ups and downs of his 30+ year career - his early days as a calefare (at the age of 40!), being paid $2,000 for Money No Enough, and his sometimes-rocky relationship with Jack Neo and Mark Lee. Hosts: John Chua (https://www.instagram.com/johnathanchua/) Ryan Tan (https://www.instagram.com/ryanxgo/) Kelvin Tan (https://www.instagram.com/mayiduosg/) Charlene Huang (https://www.instagram.com/aizaiaisteady/) Special Guests: Henry Thia (https://www.tiktok.com/@alamakhui/) For Business Enquiries: singapore.sales@grvty.media This channel is made in collaboration between ​⁠​⁠​⁠ @TheDailyKetchupPodcast ⁠​⁠​⁠ @overkillsingapore ​⁠​⁠​⁠ @doubleupsg
https://wn.com/Henry_Thia's_Biggest_Fight_With_Jack_Neo_《辉哥和梁导大闹一番_》
Freefire one tap  YtBuzzard1 Nepal Bangladesh Jack oggy plays freefire
51:51

Freefire one tap YtBuzzard1 Nepal Bangladesh Jack oggy plays freefire

  • Order:
  • Duration: 51:51
  • Uploaded Date: 18 Oct 2024
  • views: 55
Freefire one tap are you ready for the battle TheBuzzardYt #shortsvideoviral setup tour :https://youtube.com/shorts/tDUWQ6Vfgeo Freefire uid :10035902157 Freefire max : 📍Twitter : 📍Steam Profile :https://steamcommunity.com/profiles/76561199061610728/ 📍 Omlet Arcade : leaved Freefire one tap are you ready TheBuzzardYt is here 📍Facebook: https://www.facebook.com/GamerBuzzard 📍Discord :https://discord.gg/EkDNAK7 Phone :Samsung s24 PC Specs:- Processor AMD 5900X Ram Gskill TRIDENT Z NEO 32gb (16\16) Graphics Card AORUS GeForce RTX™ 3080 MASTER 10G Internal Drives WD_BLACK™ SN850 NVMe™ SSD HDD My Passport from WD 4TB CPU Fan Cooler Master Master Liquid ML360R RGB PSU Cooler Master V850 Gold V2, 80 Plus Gold Motherboard ASUS ROG Strix X570-E Gaming AMD X570 ATX MOUSE Logitech G502 KEYBOARD MARSKSMAN 4 CIRCLE GAMING Monitor: Acer predator x34p ultrawide 120hz solo grandmaster gameplay solo grandmaster tips grandmaster in one day dcm 999 rank push kaise kare free fire rank push trick solo grandmaster pushing solo rank pushing tips and tricks how to push rank in free fire solo rank push tips in free fire how to reach grandmaster in solo fast rank push in free fire gold to grandmaster in one day how to go heroic solo rank push gameplay rank push diamond to heroic free fire me heroic kaise jaye road to grandmaster diamond to heroic gold to grandmaster solo grandmaster push grandmaster hindi grandmaster in free fire free fire grandmaster road to grandmaster free fire grandmaster free fire garena free fire solo heroic gameplay solo grandmaster hindi rank push tips and tricks latest free fire solo rank push tips and tricks solo rank push tips diamond to heroic fast rank push how to push rank in free fire total gaming how to push grandmaster in free fire rank push tips and tricks solo rank push tips in free fire how to rank push in free fire how to survive in free fire top 5 tips and tricks for rank push in free fire pro tips for rank push solo rank push with k character br rank session 34 solo rank push solo rank push 2023 how to push solo rank solo rank push glitch solo rank push gameplay solo rank push strategy ff rank push br rank push solo grandmaster push rank push tips solo rank push tips and tricks how i reach grandmaster how to reach grandmaster how to reach grandmaster in solo how to reach grandmaster in 1 day how to reach grandmaster in free fire how to reach grandmaster after heroic how to push grandmaster grandmaster glitch full map grandmaster tips and tricks grandmaster rank pushing trick rank push tips and tricks secret grandmaster pushing trick br rank push trick in grandmaster lobby grandmaster rank push br rank push tips and tricks k character rank push tips and tricks free fire rank push tips and tricks solo rank push tips and tricks duo rank push tips and tricks squad rank push tips and tricks platinum to diamond push in 1 hour diamond to master fast rank push in 5 hours solo grandmaster pushing rank push diamond to heroic diamond to master rank push how to push diamond 4 to master in solo #freefire #freefirebrasil #freefireindonesia #freefiregame #garenafreefire #freefirebooyah #pubg #garena #freefirememes #freefirememe #ff #freefiregarena #freefirekocak #freefireindo #freefirebattleground #pubgmobile #gamer #booyah #game #freefireshare #freefirenews #freefiresquad #freefirevideo #freefirelatam #loud #freefirebgid #gaming #mobilelegends #freefiregames #freefiremobile how to push diamond 4 to heroic in solo heroic to grandmaster solo rank pushing diamond to heroic fast rank push solo rank pushing tips and tricks grandmaster push in solo best character combination for br rank push character combination for br rank push best character skill combination for br rank push character combination for fast rank push br rank best character combination best character combination best free character combination character combination best character skill combination br rank best character combination best character combination for solo rank push br solo character combination tamil best character combination for solo tamil rank game best character combination best character combination free fire rush character combination free fire best character combination ➖🔹➖🔹➖🔹➖🔹➖🔹➖🔹➖🔹➖ THANKS FOR WATCHING..... ➖🔹➖🔹➖🔹➖🔹➖🔹➖🔹➖🔹➖ Transcript
https://wn.com/Freefire_One_Tap_Ytbuzzard1_Nepal_Bangladesh_Jack_Oggy_Plays_Freefire
MONEY NO ENOUGH 3 《钱不够用 3:全部够用》 | Trailer 1 — In Cinemas 1 February
2:10

MONEY NO ENOUGH 3 《钱不够用 3:全部够用》 | Trailer 1 — In Cinemas 1 February

  • Order:
  • Duration: 2:10
  • Uploaded Date: 29 Dec 2023
  • views: 403680
Release Date: 1 February 2024 in Singapore Director: Jack Neo 梁志强 Cast: Jack Neo 梁志强, Mark Lee 李国煌, Henry Thia 程旭辉 Genre: Drama, Comedy Ah Hui, Ah Qiang and Ah Huang are long-time buddies. Ah Hui, a man without big ambitions and his dominating Hui-sao, hope that their son – Roy, who has just completed his national service, will take over the family’s porridge shop. However, with Roy’s refusal, the couple is looking forward to sell their shop and retire. Ah Qiang used to be a successful entrepreneur before the pandemic. Ever since his business failed, he earns a living as a Private-hire driver. He often laments to his wife, embodying the typical struggle of someone in mid-life crisis. Ah Qiang and Qiang-sao also worries for their son – Ian, who seems to be lazing around and not actively seeking employment. A single parent, Ah Huang is compassionate and always ready to help any friends in need despite his modest income. Together with his daughter – Kim, who just joined the workforce, the two find joy in each other’s company and weather through challenges they each face at work. In this rapidly evolving digital age, the three families soon find themselves in predicaments, will their changing values and attitudes towards money ruin their bond? Is money truly the devil? 阿辉、阿强与阿煌,三名甘榜年代的好兄弟,在多年后各自有了自己的生活与家庭。胸无大志的阿辉及强势的妻子辉嫂,希望刚退役的儿子Roy能继承自家的潮州粥店祖业,然而却因为Roy鄙视把自己养大的传统饮食行业,而遭到无情的拒绝,令阿辉两夫妻萌生了卖店套现退休享清福的想法。曾经是个大老板的阿强因疫情生意失败,沦为私召车司机而感到愤愤不平,不断在妻子强嫂面前发着牢骚,俨然一个典型身陷中年危机的失意男人。对于自己独生子Ian,阿强两夫妻更是对他的不脚踏实地,一直梦想着一步登天而懊恼,恨铁不成钢。单亲父亲阿煌,是个典型的好好先生,身边朋友只要开口求助,虽然自己收入不高,但都会义不容辞的伸出援手。与阿煌相依为命的女儿Kim,工作上虽不如意,和父亲阿煌的生活也捉襟见肘,但是两父女间倒也相处得其乐融融。在这个瞬息万变的数码网络年代,原本关系融洽的三家人,却因为现代人对金钱观与价值观的改变,而令众人间的关系逐渐变质,渐行渐远。金钱… 真的是魔鬼吗? #MoneyNoEnough #MoneyNoEnough3 #钱不够用 #钱不够用3
https://wn.com/Money_No_Enough_3_《钱不够用_3:全部够用》_|_Trailer_1_—_In_Cinemas_1_February
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asks
    5:38
    Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asksremove from playlist
  • Jack Neo threatened to fire an actress on set! 梁志强片场恫言要开除某女演员!#justswipelah
    13:10
    Jack Neo threatened to fire an actress on set! 梁志强片场恫言要开除某女演员!#justswipelahremove from playlist
  • Truck Towed Away On The 1st Day of Filming (ENG SUB)【梁导: “拍电影时钱真的不够用“】Ft. Jack Neo| R U OKAY 【你OK吗?】
    34:19
    Truck Towed Away On The 1st Day of Filming (ENG SUB)【梁导: “拍电影时钱真的不够用“】Ft. Jack Neo| R U OKAY 【你OK吗?】remove from playlist
  • 《钱不够用3:全部够用》 片尾曲 Official Music Video
    3:40
    《钱不够用3:全部够用》 片尾曲 Official Music Videoremove from playlist
  • Waiting For an Opinion: Jack Neo movies are underrated.
    1:25
    Waiting For an Opinion: Jack Neo movies are underrated.remove from playlist
  • Jack Neo
    0:41
    Jack Neo "Chio BU"remove from playlist
  • Henry Thia's Biggest Fight with Jack Neo!!! 《辉哥和梁导大闹一番!!!》
    30:35
    Henry Thia's Biggest Fight with Jack Neo!!! 《辉哥和梁导大闹一番!!!》remove from playlist
  • Freefire one tap  YtBuzzard1 Nepal Bangladesh Jack oggy plays freefire
    51:51
    Freefire one tap YtBuzzard1 Nepal Bangladesh Jack oggy plays freefireremove from playlist
  • MONEY NO ENOUGH 3 《钱不够用 3:全部够用》 | Trailer 1 — In Cinemas 1 February
    2:10
    MONEY NO ENOUGH 3 《钱不够用 3:全部够用》 | Trailer 1 — In Cinemas 1 Februaryremove from playlist
developed with YouTube
PLAYLIST TIME:

Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asks

We hear you like men with a sense of humour. Here's three of them: Henry Thia, 18, Jack Neo, 16, and Mark Lee, 14. Catch "Diam Diam Era Too" in theatres from February 11, 2021. But you can read our interview with them first: https://mothership.sg/.../jack-neo-mark-lee-henry-thia.../ Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔
5:38
Henry Thia, Jack Neo, Mark Lee | Mothership Instagram Asks
We hear you like men with a sense of humour. Here's three of them: Henry Thia, 18, Jack Ne...
published: 13 Feb 2021
Play in Full Screen
3:31
Jack Neo 梁志强《我们都一样 We Are All The Same》Official Music Video
感谢大家对这首歌的赞赏,现在给大家高清版和卡拉版,鼓励大家也跟着唱
published: 25 Apr 2020
Play in Full Screen
13:10
Jack Neo threatened to fire an actress on set! 梁志强片场恫言要开除某女演员!#justswipelah
Director Jack Neo is bringing Xixi Lim to try his favourite Bak Chor Mee that he's been ea...
published: 12 Jul 2024
Play in Full Screen
34:19
Truck Towed Away On The 1st Day of Filming (ENG SUB)【梁导: “拍电影时钱真的不够用“】Ft. Jack Neo| R U OKAY 【你OK吗?】
In this episode of R U Okay, we have Singapore’s biggest movie Director Jack Neo with us. ...
published: 04 Feb 2024
Play in Full Screen
3:40
《钱不够用3:全部够用》 片尾曲 Official Music Video
【钱不是问题,问题是没钱….】 “Money is not the problem. The problem is no money.” After 25years, Singa...
published: 11 Feb 2024
Play in Full Screen
1:25
Waiting For an Opinion: Jack Neo movies are underrated.
Not bad what his movies. Have an interesting video idea? Send us an email at video@mother...
published: 25 May 2023
Play in Full Screen
0:41
Jack Neo "Chio BU"
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ TAGS, IGNO...
published: 16 Dec 2008
Play in Full Screen
30:35
Henry Thia's Biggest Fight with Jack Neo!!! 《辉哥和梁导大闹一番!!!》
Singaporean comedy icon Hui Ge (Henry Thia) takes us through the ups and downs of his 30+ ...
published: 11 Aug 2024
Play in Full Screen
51:51
Freefire one tap YtBuzzard1 Nepal Bangladesh Jack oggy plays freefire
Freefire one tap are you ready for the battle TheBuzzardYt #shortsvideoviral setup tou...
published: 18 Oct 2024
Play in Full Screen
2:10
MONEY NO ENOUGH 3 《钱不够用 3:全部够用》 | Trailer 1 — In Cinemas 1 February
Release Date: 1 February 2024 in Singapore Director: Jack Neo 梁志强 Cast: Jack Neo 梁志强, Mark...
published: 29 Dec 2023
Play in Full Screen

Jack Neo

Jack Neo (born Neo Chee Keong, 24 January 1956), PBM, is a Singaporean film and television actor, host and director. He is best known for his cross-dressing roles, as Liang Popo (literally: Granny Liang) in the 1999 film Liang Po Po: The Movie and as Liang Ximei in the late 1990s television comedy show Comedy Night.

Career

Neo found his calling when at the age of 14, he wrote and acted in a comedy skit for Tanjong Katong Secondary School.

Neo started his career on television in 1980 and became one of the most successful and recognisable celebrities in MediaCorp for his comedic roles on film and television. His two most notable cross-dressing roles on film and television are that of Liang Po Po and Liang Xi Mei, both skits in the long-running comedy variety show Comedy Night. Neo made his directorial debut in That One Not Enough (1999) and he set up his own artiste management company, J Team Productions, whose members include comedians Mark Lee, Henry Thia and John Cheng.

Neo's films satirise several aspects about Singapore in comical ways, including societal issues such as negligent parenting and school corporal punishment, and foreign issues such as the water disputes between Singapore and Malaysia. Apart from his film and TV career, Neo has also recorded and produced a number of albums.

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