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

Podcasts:

  • Robot 2.0 full HD movie

    flow the guidelines of you tube no copyright to another source #audio #bhojpuri #housemusic

    published: 26 Feb 2024
  • 2.0 (Tamil) | The Final Battle | Rajinikanth | Akshay Kumar | Amy Jackson | 4K (English Subtitles)

    After mobiles start mysteriously flying out of the hands of people in Chennai, Dr Vaseegaran summons his trusted robot Chitti to ward off the bird-shaped supernatural powers of Pakshirajan. Directed by: S. Shankar Produced by: A. Subaskaran Written by: S. Shankar, B. Jeyamohan, Madhan Karky (Dialogues) Screenplay by: S. Shankar Story by: S. Shankar Starring: Rajinikanth, Akshay Kumar, Amy Jackson, Sudhanshu Pandey Music by: A. R. Rahman Cinematography: Nirav Shah Edited by: Anthony Production company: Lyca Productions Distributed by: Lyca Productions Release date: 29 November 2018 Lyca Productions on Facebook - https://www.facebook.com/LycaProductions Twitter - https://twitter.com/LycaProductions Instagram - https://instagram.com/Lyca_Productions In Association with Divo Facebook : htt...

    published: 25 Nov 2020
  • The Making of Akshay Kumar's Look | 2.0 | Rajinikanth | S. Shankar

    The action behind the making of Akshay Kumar's look. -Team 2.0- Cast : 'Superstar' Rajinikanth, Akshay Kumar, Amy Jackson & Others Written & Directed by S. Shankar Produced by Subaskaran Music: A. R. Rahman Cinematographer: Nirav Shah Editor: Anthony Art: T Muthuraj Jeya Mohan | V Srinivas Mohan | Rif Dagher | Resul Pookutty | Mary E Vogt | Kenny Bates | Nick Powell | Steve Griffin | Silva | Legacy Effects | Double Negative | Quantum FX | Bosco | Na Muthukumar | Madhan Karky | Rocky Music on Lyca Music Hitting silver screens on November 29th 2018. Subscribe for Regular Updates http://goo.gl/tBtxtt Like us on http://www.facebook.com/DharmaMovies Follow us on http://www.twitter.com/DharmaMovies https://www.instagram.com/dharmamovies Circle us on Google+ https://plus.google.com/+Dh...

    published: 16 Nov 2018
  • #李龍基 #王青霞|輕鬆傾下城中事 法律知識你要知|危險人物2.0 直播重溫 (2024年2月23日)

    🔸 記得 𝑪𝑳𝑺 ➟ 𝑪𝘰𝘮𝘮𝘦𝘯𝘵 + 𝑳𝘪𝘬𝘦 + 𝑺𝘩𝘢𝘳𝘦 🔸 訂閱+成為會員 ➟ https://www.youtube.com/channel/UCAlVuubC3GE6kFFeNBEkoUQ/join 🔒 會員限定 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1533EnMN8E07igD52FdzSk https://youtu.be/FindqSqL6G4 https://youtu.be/eqrRy5N3M9Q?si=8t18WSEOOhWgqWH2 https://youtu.be/vO6x5v6_FI4?si=0MoJA9zEoS3E683t https://youtu.be/Jgc8ycA1AwU 🔗 其他影片 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1C-yJR4sfStWv1QohPXbKk https://www.youtube.com/playlist?list=PLaG_Tql9oNB3TzSyKNFCjh49UGQ5YT4Zq https://www.youtube.com/playlist?list=PLaG_Tql9oNB3X428HJFCTADk5adylc74P https://www.youtube.com/playlist?list=PLaG_Tql9oNB2Sh1_IaFje2zT6Ww_sd_Ri https://www.youtube.com/playlist?list=PLaG_Tql9oNB3J1EMZxXNGZrovtPHjO_DG https://www.youtube.com/playlist?list=PLaG_Tql9oNB2--1VQ-Os4q07vnRO2ubsA https://w...

    published: 23 Feb 2024
  • 空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】

    💬 自選字幕 [中文(繁/簡) + 英文] 死者前男友莫俊賢在殺害空姐後就潛逃到深圳,並一直匿藏在深圳親友家中,直至三年後,有人向公安舉報,莫始被內地公安拘捕,並移交香港警方。原來,罪犯若潛逃內地後想回港自首,但又不想在過關時被執法人員拘捕,是可以提前預約律師的。具體點做?曾帶逃犯回港的律師楊雲峰親述經過。 🔸 記得 𝑪𝑳𝑺 ➟ 𝑪𝘰𝘮𝘮𝘦𝘯𝘵 + 𝑳𝘪𝘬𝘦 + 𝑺𝘩𝘢𝘳𝘦 🔸 訂閱+成為會員 ➟ https://www.youtube.com/channel/UCAlVuubC3GE6kFFeNBEkoUQ/join 🔒 會員限定 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1533EnMN8E07igD52FdzSk https://youtu.be/FindqSqL6G4 https://youtu.be/eqrRy5N3M9Q?si=8t18WSEOOhWgqWH2 https://youtu.be/vO6x5v6_FI4?si=0MoJA9zEoS3E683t https://youtu.be/Jgc8ycA1AwU 🔗 其他影片 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1C-yJR4sfStWv1QohPXbKk https://www.youtube.com/playlist?list=PLaG_Tql9oNB3TzSyKNFCjh49UGQ5YT4Zq https://www.youtube.com/playlist?list=PLaG_Tql9oNB3X428HJFCTADk5adylc74P https://www.youtube.com/playlist?list=PLaG_Tql9oNB2Sh1_IaFje2zT6Ww_sd_R...

    published: 28 Feb 2024
  • Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaskaran

    Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaskaran MY STUNT VIDEO LINK https://youtu.be/7jPnnv2-sZw?si=ILa0TivQ36B9uey4 ...............🙏🙏🙏🙏..............................

    published: 23 Feb 2024
  • Endhira Logathu Sundariye Video Song | 4K | 2.0 Tamil Songs | Rajinikanth | Amy Jackson | AR Rahman

    Endhira Logathu Sundariye song from 2.0 Tamil Movie starring Rajinikanth, Akshay Kumar & Amy Jackson in lead roles. The Movie is Directed by Shankar, Music composed by AR Rahman. Produced by Lyca Productions. For More latest from Lyca subscribe to Lyca Music. Song Details: Song Name: Endhira Logathu Sundariye Singer: Sid Sriram, Shashaa Tirupati Lyrics: Madhan Karky Music: AR Rahman Follow Lyca Productions on Facebook - https://www.facebook.com/LycaProductions Twitter - https://twitter.com/LycaProductions Insta - https://instagram.com/Lyca_Productions

    published: 11 Apr 2022
  • Raajali Video Song | 2.0 Tamil Songs | 4K | Rajinikanth | Akshay Kumar | Amy Jackson | AR Rahman

    Raajali Video song from 2.0 Tamil Movie starring Rajinikanth, Akshay Kumar & Amy Jackson in lead roles. The Movie is Directed by Shankar, Music composed by AR Rahman. Produced by Lyca Productions. For More latest updates from Lyca Music, Subscribe to Lyca Music - https://bit.ly/LycaMusic Song Details: Song Name: Raajali Singer: Blaaze, Arjun Chandy, Sid Sriram Lyrics: Madhan Karky Music: AR Rahman Follow Lyca Productions on Facebook - https://www.facebook.com/LycaProductions Twitter - https://twitter.com/LycaProductions Insta - https://instagram.com/Lyca_Productions

    published: 20 Apr 2022
  • Chitti is rebooted back to life! | 2.0 | Prime Video India

    Chitti (Rajinikanth) is brought back to life to deal with the threat posed by Pakshi. Was this the correct choice? Watch Now - https://bit.ly/34el805 About: Dr Vaseegaran (Rajinikanth) and his android assistant Nila (Amy Jackson) are called in for help after mobiles start mysteriously flying out of the hands of people in Chennai. Vaseegaran summons his trusted robot Chitti (Rajinikanth) to ward off the bird-shaped supernatural powers of Pakshirajan (Akshay Kumar). For more such videos, subscribe to our YouTube channel ► https://amzn.to/Subscribe Don't forget to push the Bell 🔔 icon to never miss an update. For more updates, stay connected with us on ► Facebook: https://www.facebook.com/PrimeVideoIN/ ► Twitter: https://twitter.com/PrimeVideoIN ► Instagram: https://www.instagram.com/prim...

    published: 20 May 2023
  • 2.0 - Official Teaser [Hindi] | Rajinikanth | Akshay Kumar | A R Rahman | Shankar | Subaskaran

    Proudly presenting the Official Teaser of our Magnum Opus "2.0" Starring Rajinikanth, Akshay Kumar, Amy Jackson in lead; Music Composed by A R Rahman & Directed by Shankar. #2Point0 #2Point0Teaser Lyca Productions presents "2.0" -Team 2.0- Cast : 'Superstar' Rajinikanth, Akshay Kumar, Amy Jackson & Others Written & Directed by S. Shankar Produced by Subaskaran Music: A. R. Rahman Cinematographer: Nirav Shah Editor: Anthony Art: T Muthuraj Abbas Tyrewala | V Srinivas Mohan | Rif Dagher | Resul Pookutty | Mary E Vogt | Kenny Bates | Nick Powell | Steve Griffin | Silva | Bosco | Rocky | Legacy Effects | Double Negative | Quantum FX Music on Lyca Music Hitting Silver-Screens on Nov 29th 2018 Subscribe for Regular Updates http://goo.gl/tBtxtt Like us on http://www.facebook.com/Dharma...

    published: 13 Sep 2018
Robot 2.0 full HD movie
2:21:21

Robot 2.0 full HD movie

  • Order:
  • Duration: 2:21:21
  • Uploaded Date: 26 Feb 2024
  • views: 23694
flow the guidelines of you tube no copyright to another source #audio #bhojpuri #housemusic
https://wn.com/Robot_2.0_Full_Hd_Movie
2.0 (Tamil) | The Final Battle | Rajinikanth | Akshay Kumar | Amy Jackson | 4K (English Subtitles)
8:10

2.0 (Tamil) | The Final Battle | Rajinikanth | Akshay Kumar | Amy Jackson | 4K (English Subtitles)

  • Order:
  • Duration: 8:10
  • Uploaded Date: 25 Nov 2020
  • views: 10651900
After mobiles start mysteriously flying out of the hands of people in Chennai, Dr Vaseegaran summons his trusted robot Chitti to ward off the bird-shaped supernatural powers of Pakshirajan. Directed by: S. Shankar Produced by: A. Subaskaran Written by: S. Shankar, B. Jeyamohan, Madhan Karky (Dialogues) Screenplay by: S. Shankar Story by: S. Shankar Starring: Rajinikanth, Akshay Kumar, Amy Jackson, Sudhanshu Pandey Music by: A. R. Rahman Cinematography: Nirav Shah Edited by: Anthony Production company: Lyca Productions Distributed by: Lyca Productions Release date: 29 November 2018 Lyca Productions on Facebook - https://www.facebook.com/LycaProductions Twitter - https://twitter.com/LycaProductions Instagram - https://instagram.com/Lyca_Productions In Association with Divo Facebook : https://www.facebook.com/divomovies/ Twitter : https://www.twitter.com/divomovies/ Instagram : https://www.instagram.com/divomovies/ Telegram : https://t.me/divodigital
https://wn.com/2.0_(Tamil)_|_The_Final_Battle_|_Rajinikanth_|_Akshay_Kumar_|_Amy_Jackson_|_4K_(English_Subtitles)
The Making of Akshay Kumar's Look | 2.0 | Rajinikanth | S. Shankar
0:55

The Making of Akshay Kumar's Look | 2.0 | Rajinikanth | S. Shankar

  • Order:
  • Duration: 0:55
  • Uploaded Date: 16 Nov 2018
  • views: 28003685
The action behind the making of Akshay Kumar's look. -Team 2.0- Cast : 'Superstar' Rajinikanth, Akshay Kumar, Amy Jackson & Others Written & Directed by S. Shankar Produced by Subaskaran Music: A. R. Rahman Cinematographer: Nirav Shah Editor: Anthony Art: T Muthuraj Jeya Mohan | V Srinivas Mohan | Rif Dagher | Resul Pookutty | Mary E Vogt | Kenny Bates | Nick Powell | Steve Griffin | Silva | Legacy Effects | Double Negative | Quantum FX | Bosco | Na Muthukumar | Madhan Karky | Rocky Music on Lyca Music Hitting silver screens on November 29th 2018. Subscribe for Regular Updates http://goo.gl/tBtxtt Like us on http://www.facebook.com/DharmaMovies Follow us on http://www.twitter.com/DharmaMovies https://www.instagram.com/dharmamovies Circle us on Google+ https://plus.google.com/+DharmaMovies
https://wn.com/The_Making_Of_Akshay_Kumar's_Look_|_2.0_|_Rajinikanth_|_S._Shankar
#李龍基 #王青霞|輕鬆傾下城中事 法律知識你要知|危險人物2.0 直播重溫 (2024年2月23日)
1:16:10

#李龍基 #王青霞|輕鬆傾下城中事 法律知識你要知|危險人物2.0 直播重溫 (2024年2月23日)

  • Order:
  • Duration: 1:16:10
  • Uploaded Date: 23 Feb 2024
  • views: 851747
🔸 記得 𝑪𝑳𝑺 ➟ 𝑪𝘰𝘮𝘮𝘦𝘯𝘵 + 𝑳𝘪𝘬𝘦 + 𝑺𝘩𝘢𝘳𝘦 🔸 訂閱+成為會員 ➟ https://www.youtube.com/channel/UCAlVuubC3GE6kFFeNBEkoUQ/join 🔒 會員限定 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1533EnMN8E07igD52FdzSk https://youtu.be/FindqSqL6G4 https://youtu.be/eqrRy5N3M9Q?si=8t18WSEOOhWgqWH2 https://youtu.be/vO6x5v6_FI4?si=0MoJA9zEoS3E683t https://youtu.be/Jgc8ycA1AwU 🔗 其他影片 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1C-yJR4sfStWv1QohPXbKk https://www.youtube.com/playlist?list=PLaG_Tql9oNB3TzSyKNFCjh49UGQ5YT4Zq https://www.youtube.com/playlist?list=PLaG_Tql9oNB3X428HJFCTADk5adylc74P https://www.youtube.com/playlist?list=PLaG_Tql9oNB2Sh1_IaFje2zT6Ww_sd_Ri https://www.youtube.com/playlist?list=PLaG_Tql9oNB3J1EMZxXNGZrovtPHjO_DG https://www.youtube.com/playlist?list=PLaG_Tql9oNB2--1VQ-Os4q07vnRO2ubsA https://www.youtube.com/playlist?list=PLaG_Tql9oNB1TYrkaydqiekQKT4Ma6r6J https://www.youtube.com/playlist?list=PLaG_Tql9oNB1UIFzC56S4hbWVLZR8iHBj&si=og03g5BWdFCSG6E3 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1Z57oO6cYGj3DxORvefIe0&si=meqypQ602eMlfyJU https://www.youtube.com/playlist?list=PLaG_Tql9oNB1YrcP0S1alx-F3o4lVDEzP https://www.youtube.com/playlist?list=PLaG_Tql9oNB264aDFf-qZ9Lw52SefWeaO https://www.youtube.com/playlist?list=PLaG_Tql9oNB1ZCL0fMLsGp9fnyLelsxkk https://www.youtube.com/playlist?list=PLaG_Tql9oNB0rWUJWIyK10oI-Yy8nXE5s 翁靜晶 Facebook https://www.facebook.com/weng.jingmaryjeanlau 翁靜晶 Facebook專頁 https://www.facebook.com/MaryJeanReimerLau 翁靜晶 Instagram https://www.instagram.com/wengjingjing6086 #危險人物 #翁靜晶 #李龍基 #李隆基 #唐玄宗 #未婚妻 #Chris #王青霞 #登基 #提款基 #為取得入境證而作出虚假陳述 #使用虛假文書 #向入境主任作出虛假陳述 #管有虛假文書 #違反逗留條件 #保釋
https://wn.com/李龍基_王青霞|輕鬆傾下城中事_法律知識你要知|危險人物2.0_直播重溫_(2024年2月23日)
空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】
19:37

空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】

  • Order:
  • Duration: 19:37
  • Uploaded Date: 28 Feb 2024
  • views: 90411
💬 自選字幕 [中文(繁/簡) + 英文] 死者前男友莫俊賢在殺害空姐後就潛逃到深圳,並一直匿藏在深圳親友家中,直至三年後,有人向公安舉報,莫始被內地公安拘捕,並移交香港警方。原來,罪犯若潛逃內地後想回港自首,但又不想在過關時被執法人員拘捕,是可以提前預約律師的。具體點做?曾帶逃犯回港的律師楊雲峰親述經過。 🔸 記得 𝑪𝑳𝑺 ➟ 𝑪𝘰𝘮𝘮𝘦𝘯𝘵 + 𝑳𝘪𝘬𝘦 + 𝑺𝘩𝘢𝘳𝘦 🔸 訂閱+成為會員 ➟ https://www.youtube.com/channel/UCAlVuubC3GE6kFFeNBEkoUQ/join 🔒 會員限定 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1533EnMN8E07igD52FdzSk https://youtu.be/FindqSqL6G4 https://youtu.be/eqrRy5N3M9Q?si=8t18WSEOOhWgqWH2 https://youtu.be/vO6x5v6_FI4?si=0MoJA9zEoS3E683t https://youtu.be/Jgc8ycA1AwU 🔗 其他影片 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1C-yJR4sfStWv1QohPXbKk https://www.youtube.com/playlist?list=PLaG_Tql9oNB3TzSyKNFCjh49UGQ5YT4Zq https://www.youtube.com/playlist?list=PLaG_Tql9oNB3X428HJFCTADk5adylc74P https://www.youtube.com/playlist?list=PLaG_Tql9oNB2Sh1_IaFje2zT6Ww_sd_Ri https://www.youtube.com/playlist?list=PLaG_Tql9oNB3J1EMZxXNGZrovtPHjO_DG https://www.youtube.com/playlist?list=PLaG_Tql9oNB2--1VQ-Os4q07vnRO2ubsA https://www.youtube.com/playlist?list=PLaG_Tql9oNB1TYrkaydqiekQKT4Ma6r6J https://www.youtube.com/playlist?list=PLaG_Tql9oNB1UIFzC56S4hbWVLZR8iHBj&si=og03g5BWdFCSG6E3 https://www.youtube.com/playlist?list=PLaG_Tql9oNB1Z57oO6cYGj3DxORvefIe0&si=meqypQ602eMlfyJU https://www.youtube.com/playlist?list=PLaG_Tql9oNB1YrcP0S1alx-F3o4lVDEzP https://www.youtube.com/playlist?list=PLaG_Tql9oNB264aDFf-qZ9Lw52SefWeaO https://www.youtube.com/playlist?list=PLaG_Tql9oNB1ZCL0fMLsGp9fnyLelsxkk https://www.youtube.com/playlist?list=PLaG_Tql9oNB0rWUJWIyK10oI-Yy8nXE5s https://www.youtube.com/playlist?list=PLaG_Tql9oNB0vbhlwX10qsJlb98eCl07n 翁靜晶 Facebook https://www.facebook.com/weng.jingmaryjeanlau 翁靜晶 Facebook專頁 https://www.facebook.com/MaryJeanReimerLau 翁靜晶 Instagram https://www.instagram.com/wengjingjing6086 #港龍空姐 #陳曼儀 #莫俊賢 #殺害 #藏屍衣櫃 #潛逃 #謀殺 #終身監禁 #空姐衣櫃藏屍案 #逃犯 #移交逃犯 #潛逃 #危險人物 #翁靜晶 #楊雲峰
https://wn.com/空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】
Robot 2.0 -(Hindi ) Movie clips  (Rajnikant/Akshay Kumar) / AR Rahman  Shankar's / Subaskaran
30:26

Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaskaran

  • Order:
  • Duration: 30:26
  • Uploaded Date: 23 Feb 2024
  • views: 364570
Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaskaran MY STUNT VIDEO LINK https://youtu.be/7jPnnv2-sZw?si=ILa0TivQ36B9uey4 ...............🙏🙏🙏🙏..............................
https://wn.com/Robot_2.0_(Hindi_)_Movie_Clips_(Rajnikant_Akshay_Kumar)_Ar_Rahman_Shankar's_Subaskaran
Endhira Logathu Sundariye Video Song | 4K | 2.0 Tamil Songs | Rajinikanth | Amy Jackson | AR Rahman
5:33

Endhira Logathu Sundariye Video Song | 4K | 2.0 Tamil Songs | Rajinikanth | Amy Jackson | AR Rahman

  • Order:
  • Duration: 5:33
  • Uploaded Date: 11 Apr 2022
  • views: 2470266
Endhira Logathu Sundariye song from 2.0 Tamil Movie starring Rajinikanth, Akshay Kumar & Amy Jackson in lead roles. The Movie is Directed by Shankar, Music composed by AR Rahman. Produced by Lyca Productions. For More latest from Lyca subscribe to Lyca Music. Song Details: Song Name: Endhira Logathu Sundariye Singer: Sid Sriram, Shashaa Tirupati Lyrics: Madhan Karky Music: AR Rahman Follow Lyca Productions on Facebook - https://www.facebook.com/LycaProductions Twitter - https://twitter.com/LycaProductions Insta - https://instagram.com/Lyca_Productions
https://wn.com/Endhira_Logathu_Sundariye_Video_Song_|_4K_|_2.0_Tamil_Songs_|_Rajinikanth_|_Amy_Jackson_|_Ar_Rahman
Raajali Video Song | 2.0 Tamil Songs | 4K | Rajinikanth | Akshay Kumar | Amy Jackson | AR Rahman
1:06

Raajali Video Song | 2.0 Tamil Songs | 4K | Rajinikanth | Akshay Kumar | Amy Jackson | AR Rahman

  • Order:
  • Duration: 1:06
  • Uploaded Date: 20 Apr 2022
  • views: 2101189
Raajali Video song from 2.0 Tamil Movie starring Rajinikanth, Akshay Kumar & Amy Jackson in lead roles. The Movie is Directed by Shankar, Music composed by AR Rahman. Produced by Lyca Productions. For More latest updates from Lyca Music, Subscribe to Lyca Music - https://bit.ly/LycaMusic Song Details: Song Name: Raajali Singer: Blaaze, Arjun Chandy, Sid Sriram Lyrics: Madhan Karky Music: AR Rahman Follow Lyca Productions on Facebook - https://www.facebook.com/LycaProductions Twitter - https://twitter.com/LycaProductions Insta - https://instagram.com/Lyca_Productions
https://wn.com/Raajali_Video_Song_|_2.0_Tamil_Songs_|_4K_|_Rajinikanth_|_Akshay_Kumar_|_Amy_Jackson_|_Ar_Rahman
Chitti is rebooted back to life! | 2.0 | Prime Video India
2:10

Chitti is rebooted back to life! | 2.0 | Prime Video India

  • Order:
  • Duration: 2:10
  • Uploaded Date: 20 May 2023
  • views: 888906
Chitti (Rajinikanth) is brought back to life to deal with the threat posed by Pakshi. Was this the correct choice? Watch Now - https://bit.ly/34el805 About: Dr Vaseegaran (Rajinikanth) and his android assistant Nila (Amy Jackson) are called in for help after mobiles start mysteriously flying out of the hands of people in Chennai. Vaseegaran summons his trusted robot Chitti (Rajinikanth) to ward off the bird-shaped supernatural powers of Pakshirajan (Akshay Kumar). For more such videos, subscribe to our YouTube channel ► https://amzn.to/Subscribe Don't forget to push the Bell 🔔 icon to never miss an update. For more updates, stay connected with us on ► Facebook: https://www.facebook.com/PrimeVideoIN/ ► Twitter: https://twitter.com/PrimeVideoIN ► Instagram: https://www.instagram.com/primevideoin ► Watch Now: https://primevideo.com About Prime Video Prime Video is a premium streaming service that offers Prime members a collection of award-winning Amazon Original series, thousands of movies and TV shows—all with the ease of finding what they love to watch in one place. Find out more at PrimeVideo.com. Included with Prime Video: Thousands of acclaimed TV shows and movies across languages and geographies, including Indian films such as Jai Bhim, Shershaah, Toofaan, Sardar Udham, Coolie No. 1, Gulabo Sitabo, Shakuntala Devi, Sherni, Durgamati, Chhalaang, Hello Charlie, Cold Case, Narappa, Sara’s, Sarpatta Parambarai, Kuruthi and Tuck Jagadish, along with Indian-produced Amazon Original series like Mumbai Diaries 26/11, The Last Hour, Paatal Lok, Bandish Bandits, Breathe, Comicstaan Semma Comedy Pa, The Family Man, Mirzapur, Inside Edge and Made In Heaven. Also included are popular global Amazon Originals like The Tomorrow War, Coming 2 America, Cinderella, Borat Subsequent Moviefilm, Without Remorse, The Wheel of Time, American Gods, One Night in Miami, Tom Clancy's Jack Ryan, The Boys, Hunters, Cruel Summer, Fleabag, The Marvelous Mrs. Maisel and many more, available for unlimited streaming as part of a Prime membership. Prime Video includes content across Hindi, Marathi, Gujarati, Tamil, Telugu, Kannada, Malayalam, Punjabi and Bengali. Instant Access: Prime Members can watch anywhere, anytime on the Prime Video app for smart TVs, mobile devices, Fire TV, Fire TV stick, Fire tablets, Apple TV and multiple gaming devices. Prime Video is also available to consumers through Airtel and Vodafone pre-paid and post-paid subscription plans. In the Prime Video app, Prime members can download episodes on their mobile devices and tablets and watch anywhere offline at no additional cost. Enhanced experiences Make the most of every viewing with 4K Ultra HD- and High Dynamic Range (HDR)-compatible content. Go behind the scenes of your favourite movies and TV shows with exclusive X-Ray access, powered by IMDb. Save it for later with select mobile downloads for offline viewing. Included with Prime Prime Video is available in India at no extra cost with Prime membership for just ₹1499 annually or ₹179 monthly. New customers can find out more at www.amazon.in/prime and subscribe to a free 30-day trial.
https://wn.com/Chitti_Is_Rebooted_Back_To_Life_|_2.0_|_Prime_Video_India
2.0 - Official Teaser [Hindi] | Rajinikanth | Akshay Kumar | A R Rahman | Shankar | Subaskaran
1:32

2.0 - Official Teaser [Hindi] | Rajinikanth | Akshay Kumar | A R Rahman | Shankar | Subaskaran

  • Order:
  • Duration: 1:32
  • Uploaded Date: 13 Sep 2018
  • views: 74719812
Proudly presenting the Official Teaser of our Magnum Opus "2.0" Starring Rajinikanth, Akshay Kumar, Amy Jackson in lead; Music Composed by A R Rahman & Directed by Shankar. #2Point0 #2Point0Teaser Lyca Productions presents "2.0" -Team 2.0- Cast : 'Superstar' Rajinikanth, Akshay Kumar, Amy Jackson & Others Written & Directed by S. Shankar Produced by Subaskaran Music: A. R. Rahman Cinematographer: Nirav Shah Editor: Anthony Art: T Muthuraj Abbas Tyrewala | V Srinivas Mohan | Rif Dagher | Resul Pookutty | Mary E Vogt | Kenny Bates | Nick Powell | Steve Griffin | Silva | Bosco | Rocky | Legacy Effects | Double Negative | Quantum FX Music on Lyca Music Hitting Silver-Screens on Nov 29th 2018 Subscribe for Regular Updates http://goo.gl/tBtxtt Like us on http://www.facebook.com/DharmaMovies Follow us on http://www.twitter.com/DharmaMovies https://www.instagram.com/dharmamovies Circle us on Google+ https://plus.google.com/+DharmaMovies
https://wn.com/2.0_Official_Teaser_Hindi_|_Rajinikanth_|_Akshay_Kumar_|_A_R_Rahman_|_Shankar_|_Subaskaran
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Robot 2.0 full HD movie
    2:21:21
    Robot 2.0 full HD movieremove from playlist
  • 2.0 (Tamil) | The Final Battle | Rajinikanth | Akshay Kumar | Amy Jackson | 4K (English Subtitles)
    8:10
    2.0 (Tamil) | The Final Battle | Rajinikanth | Akshay Kumar | Amy Jackson | 4K (English Subtitles)remove from playlist
  • The Making of Akshay Kumar's Look | 2.0 | Rajinikanth | S. Shankar
    0:55
    The Making of Akshay Kumar's Look | 2.0 | Rajinikanth | S. Shankarremove from playlist
  • #李龍基 #王青霞|輕鬆傾下城中事 法律知識你要知|危險人物2.0 直播重溫 (2024年2月23日)
    1:16:10
    #李龍基 #王青霞|輕鬆傾下城中事 法律知識你要知|危險人物2.0 直播重溫 (2024年2月23日)remove from playlist
  • 空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】
    19:37
    空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】remove from playlist
  • Robot 2.0 -(Hindi ) Movie clips  (Rajnikant/Akshay Kumar) / AR Rahman  Shankar's / Subaskaran
    30:26
    Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaskaranremove from playlist
  • Endhira Logathu Sundariye Video Song | 4K | 2.0 Tamil Songs | Rajinikanth | Amy Jackson | AR Rahman
    5:33
    Endhira Logathu Sundariye Video Song | 4K | 2.0 Tamil Songs | Rajinikanth | Amy Jackson | AR Rahmanremove from playlist
  • Raajali Video Song | 2.0 Tamil Songs | 4K | Rajinikanth | Akshay Kumar | Amy Jackson | AR Rahman
    1:06
    Raajali Video Song | 2.0 Tamil Songs | 4K | Rajinikanth | Akshay Kumar | Amy Jackson | AR Rahmanremove from playlist
  • Chitti is rebooted back to life! | 2.0 | Prime Video India
    2:10
    Chitti is rebooted back to life! | 2.0 | Prime Video Indiaremove from playlist
  • 2.0 - Official Teaser [Hindi] | Rajinikanth | Akshay Kumar | A R Rahman | Shankar | Subaskaran
    1:32
    2.0 - Official Teaser [Hindi] | Rajinikanth | Akshay Kumar | A R Rahman | Shankar | Subaskaranremove from playlist
PLAYLIST TIME:

Robot 2.0 full HD movie

flow the guidelines of you tube no copyright to another source #audio #bhojpuri #housemusic
2:21:21
Robot 2.0 full HD movie
flow the guidelines of you tube no copyright to another source #audio #bhojpuri #housemusi...
published: 26 Feb 2024
Play in Full Screen
8:10
2.0 (Tamil) | The Final Battle | Rajinikanth | Akshay Kumar | Amy Jackson | 4K (English Subtitles)
After mobiles start mysteriously flying out of the hands of people in Chennai, Dr Vaseegar...
published: 25 Nov 2020
Play in Full Screen
0:55
The Making of Akshay Kumar's Look | 2.0 | Rajinikanth | S. Shankar
The action behind the making of Akshay Kumar's look. -Team 2.0- Cast : 'Superstar' Rajin...
published: 16 Nov 2018
Play in Full Screen
1:16:10
#李龍基 #王青霞|輕鬆傾下城中事 法律知識你要知|危險人物2.0 直播重溫 (2024年2月23日)
🔸 記得 𝑪𝑳𝑺 ➟ 𝑪𝘰𝘮𝘮𝘦𝘯𝘵 + 𝑳𝘪𝘬𝘦 + 𝑺𝘩𝘢𝘳𝘦 🔸 訂閱+成為會員 ➟ https://www.youtube.com/channel/UCAlVuubC3GE...
published: 23 Feb 2024
Play in Full Screen
19:37
空姐衣櫃藏屍案⓶|兇手如何從內地移交香港?|危險人物2.0【第二十五集】
💬 自選字幕 [中文(繁/簡) + 英文] 死者前男友莫俊賢在殺害空姐後就潛逃到深圳,並一直匿藏在深圳親友家中,直至三年後,有人向公安舉報,莫始被內地公安拘捕,並移交香港警方。原...
published: 28 Feb 2024
Play in Full Screen
30:26
Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaskaran
Robot 2.0 -(Hindi ) Movie clips (Rajnikant/Akshay Kumar) / AR Rahman Shankar's / Subaska...
published: 23 Feb 2024
Play in Full Screen
5:33
Endhira Logathu Sundariye Video Song | 4K | 2.0 Tamil Songs | Rajinikanth | Amy Jackson | AR Rahman
Endhira Logathu Sundariye song from 2.0 Tamil Movie starring Rajinikanth, Akshay Kumar & A...
published: 11 Apr 2022
Play in Full Screen
1:06
Raajali Video Song | 2.0 Tamil Songs | 4K | Rajinikanth | Akshay Kumar | Amy Jackson | AR Rahman
Raajali Video song from 2.0 Tamil Movie starring Rajinikanth, Akshay Kumar & Amy Jackson i...
published: 20 Apr 2022
Play in Full Screen
2:10
Chitti is rebooted back to life! | 2.0 | Prime Video India
Chitti (Rajinikanth) is brought back to life to deal with the threat posed by Pakshi. Was ...
published: 20 May 2023
Play in Full Screen
1:32
2.0 - Official Teaser [Hindi] | Rajinikanth | Akshay Kumar | A R Rahman | Shankar | Subaskaran
Proudly presenting the Official Teaser of our Magnum Opus "2.0" Starring Rajinikanth, Aksh...
published: 13 Sep 2018
Play in Full Screen
'); } 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)); } }); }); }); // -->
×