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

' }else{ weather_info += '
'+tempC+' °C
' } weather_info += '
  • Pressure: '+weather_data.main.pressure+' hPa
  • ' if (weather_data.main.humidity) { weather_info += '
  • Humidity: '+weather_data.main.humidity+' %
  • '; } if (clouds) { weather_info += '
  • Clounds: '+clouds.all+'%
  • ' } if (weather) { weather_info += '
  • '+weather.description+'
  • ' } weather_info += '
' } } global_geo_obj.html(weather_info); var global_geo = jQuery('#forecast'); get_forecast_details(city, 4, global_geo, country); }) }); }); function forecast_status(msg) { jQuery('#forecast-header').html(msg); } function get_forecast_details(city, days_count, global_geo, country) { global_geo.html('Loading forecast ...'); jQuery.ajax({ data: { city: city, report: 'daily' }, dataType: 'jsonp', url: 'https://upge.wn.com/api/upge/cheetah-photo-search/weather_forecast_4days', success: function(data) { if(!data) { text = ('weater data temporarily not available'); } // loop through the list of weather info weather_info = ''; var weather_day_loop = 0; jQuery.each(data.list, function(idx, value) { if (idx < 1) { return; } if (weather_day_loop >= days_count) { return false; } weather = value.weather.shift() clouds = value.clouds d = new Date(value.dt*1000) t = d.getMonth()+1 + '-' + d.getDate() + '-' + d.getFullYear() moment.lang('en', { calendar : { lastDay : '[Yesterday]', sameDay : '[Today]', nextDay : '[Tomorrow]', lastWeek : '[last] dddd', nextWeek : 'dddd', sameElse : 'L' } }); mobj = moment(value.dt*1000) // skip today if (t == today) { return; } tempC = parseInt(parseFloat(value.temp.day)-273.15) tempF = parseInt(tempC*1.8+32) today = t; weather_day_loop += 1; weather_info += '
'+mobj.calendar()+'
'; weather_info += '
' weather_info += '
' if (country == 'United States'){ weather_info += '
'+tempF+' °F
' }else{ weather_info += '
'+tempC+' °C
' } weather_info += '
  • '+value.pressure+' hPa
  • ' if (value.humidity) { weather_info += '
  • Humidity: '+value.humidity+' %
  • '; } if (clouds) { weather_info += '
  • Clouds: '+clouds+'%
  • ' } if (weather) { weather_info += '
  • ' +weather.description+'
  • ' } weather_info += '
' }); global_geo.html(weather_info); } }); } //-->
  • PHAGWARA - पंजाब का शानदार शहर || FACTS ABOUT PHAGWARA || PHAGWARA PUNJAB || PHAGWARA CITY ||

    PHAGWARA - पंजाब का बदनाम शहर || FACTS ABOUT PHAGWARA || PHAGWARA PUNJAB || PHAGWARA CITY || #PHAGWARA #Punjab #facts #touristplaces #tourism #travel_hero #abhi_gupta Keywords - Phagwara Phagwara tourist places Facts about Phagwara Interesting facts about Phagwara Phagwara tourism ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Note- All the images and pictures shown in video belongs to the respected owners and not me..... _____ I am not owner of any picture shown in the videos. Disclaimer- Video is for educational purpose only. copyright disclaimer under section 107 of the copyright act 1976 , allowance is made for "fair use" for purposes such as criticism , comment , news reporting, teaching, scholarship and Research .Fair use is a use permitted by copyright statute that might other...

    published: 19 Aug 2024
  • Punjab Tour Ep - 29 | Phagwara Punjab Street Food | Punjabi Street Food

    This video is about Punjab Phagwara City . In this video we have covered Best street food in Phagwara along with the things to do in Phagwara. Location Phagwara City, Punjab 1. Vijay Di Hatti 2.Masala Market 3. Bata Kulche Cholley 4. Gurdwara Shri Sukhchain Sahib 5. Jangi De Pakore 6. Sudhir Sweets Shop 7. J K Dhaba 8. Paakhar di Jalebi Keep in Touch INSTAGRAM : https://www.instagram.com/amritsarwalkingtours FACEBOOK : https://www.Facebook.com/amritsarwalkingtour SUBSCRIBE : https://youtube.com/channel/UC1nVUbcLU8P_cLDkzQdewOw KEEP SUPPORTING | KEEP SMILLING #punjabstreetfood #punjabtour #foodinpunjab Punjabi food Punjabi Breakfast Punjabi Nashta Amritsari Kulcha Streetfood Street food India Indian Street Food Indian Food

    published: 08 Oct 2024
  • ਫਗਵਾੜਾ ਨੂੰ ਸਰਮਸ਼ਾਰ ਕਰ ਗਿਆ ਢਾਬੇ ਦੀ ਲੁੱਟ ਖਸੁੱਟ ਦਾ ਵਿਵਾਦ । ਜਗਦੀਪ ਸਿੰਘ ਥੜੀ ਦੀ ਧੂੜਾ ਪੁੱਟ ਪੱਤਰਕਾਰੀ

    The Phagwara Headline Live ਫਗਵਾੜਾ ਨੂੰ ਸਰਮਸ਼ਾਰ ਕਰ ਗਿਆ ਢਾਬੇ ਦੀ ਲੁੱਟ ਖਸੁੱਟ ਦਾ ਵਿਵਾਦ । ਜਗਦੀਪ ਸਿੰਘ ਥੜੀ ਦੀ ਧੂੜਾ ਪੁੱਟ ਪੱਤਰਕਾਰੀ #jagdeepsinghthali #punjabilokchannel #phagwaradhaba #jagdeepsinghthalipatarkar #jagdeepsinghjournalist #jagdeepsinghpunjabilok #phagwara #phagwaracity #phagwaranews #thephagwaraheadlinelive #phagwaradhaba #phagwarabusstansdhaba #journalism

    published: 11 Mar 2025
  • Phagwara | ਬਾਬਾ ਬਾਲਕ ਨਾਥ ਦਾ Poster ਪਾੜਨ 'ਤੇ ਵਿਵਾਦ, Hindu ਸੰਗਠਨਾਂ ਦੀ ਪ੍ਰਸ਼ਾਸਨ ਨੂੰ ਚੇਤਾਵਨੀ | #local18

    ਬਾਬਾ ਬਾਲਕ ਨਾਥ ਦਾ ਪੋਸਟਰ ਪਾੜਨ 'ਤੇ ਭਖਿਆ ਵਿਵਾਦ, ਮਸੀਹ ਭਾਈਚਾਰੇ ਦਾ ਬੋਰਡ ਦੇਖ ਗੁਸੇ 'ਚ ਆਏ ਹਿੰਦੂ ਸੰਗਠਨਾਂ ਨੇ ਪ੍ਰਸ਼ਾਸਨ ਨੂੰ ਦਿੱਤੀ ਚੇਤਾਵਨੀ #phagwaranews #bababalaknath #hindu #local18 Find Latest News, Top Headlines And breaking news only on News18 Punjab Youtube Channel. For All Live Coverage, Exclusive And Latest News Update, Watch The LIVE TV Of News18 Punjab, Catch The Latest News LIVE News18 Mobile App: https://onelink.to/desc-youtube News 18 Punjab is an exclusive news channel on YouTube which streams news related to Punjab, Nation and the World. Along with the news, the channel also has debates on contemporary topics and shows on special series which are interesting and informative. News18 ਪੰਜਾਬ एक क्षेत्रीय न्यूज़ चैनल है जिसपर ਪੰਜਾਬ, हरियाणा, हिमाचल, देश एवं विदेश की खबरें प्रकाशित की जाती ह...

    published: 13 Mar 2025
  • PHAGWARA~night life.ਫਗਵਾੜਾਂ~Phagwara bazar,hargobind nagar,cinema road,bus stand.bansawala bazar.

    #phagwara #phagwaracity #phagwarawholesalesuit PHAGWARE di raat di video Night time video of PHAGWARA PHAGWARE ki raat ke time ki video Eh video banai gayi a raat de time vic PHAGWARE de bazar di te PHAGWARE de bus aade di and hor bhi bahut sariya locations di Phagwara is a city and a Municipal Corporation with an area of 20 km. in Kapurthala district in Punjab, India the district headquarter, 124 kilometres away from Chandigarh and 21 kilometres away from Jalandhar 361 kilometres from New Delhi. Phagwara is a city area and is famous for sugar, glucose, starchh, fine fabric textile of jct mill, auto parts manufacturing for engines in Punjab. Universities Lovely Professional University GNA University Colleges Guru Nanak College pyramid college of business and technology Kamla Nehr...

    published: 07 May 2022
  • Miss Mahi Best Dance Performance 2022 | Sansar Dj Links Phagwara | Best Punjabi Model In 2022

    Miss Mahi Best Dance Performance 2022 | Sansar Dj Links Phagwara | Best Punjabi Model In 2022

    published: 08 Feb 2022
  • Phagwara : ਦਾਰੂ ਦੇ ਨਸ਼ੇ ‘ਚ NRI ਨੇ ‘ਉਡਾ’ ‘ਤੇ 2 ਬੰਦੇ, ਕਈ ਕਿਲੋਮੀਟਰ ਕਾਰ ਥੱਲੇ ਫਸੇ ਮੋਟਰਸਾਈਕਲ ਨੂੰ ਘੜੀਸਿਆ !

    ਦਾਰੂ ਦੇ ਨਸ਼ੇ ‘ਚ NRI ਨੇ ‘ਉਡਾ’ ‘ਤੇ 2 ਬੰਦੇ, ਕਈ ਕਿਲੋਮੀਟਰ ਕਾਰ ਥੱਲੇ ਫਸੇ ਮੋਟਰਸਾਈਕਲ ਨੂੰ ਘੜੀਸਿਆ ! #NRI #CarAccident #Goraya #Phagwara #Motorcycle #PTCNews PTC NEWS is dedicated to the soul and heritage of Punjab offering authentic updates on current events, news, happenings and people that are of interest to Punjabis all over. (𝑷𝒂𝒊𝒅 𝒎𝒖𝒔𝒊𝒄 𝒖𝒔𝒆𝒅 𝒊𝒏 𝒕𝒉𝒆 𝒗𝒊𝒅𝒆𝒐, 𝒑𝒓𝒐𝒗𝒊𝒅𝒆𝒅 𝒃𝒚 𝑬𝒏𝒗𝒂𝒕𝒐) Connect with PTC News for latest updates: 》Subscribe to our channel: https://bit.ly/2Orydr1 》𝐕𝐢𝐬𝐢𝐭 𝐖𝐞𝐛𝐬𝐢𝐭𝐞 : https://www.ptcnews.tv 》𝐅𝐀𝐂𝐄𝐁𝐎𝐎𝐊 : https://www.facebook.com/ptcnewsonline/ 》𝐓𝐖𝐈𝐓𝐓𝐄𝐑 : https://twitter.com/ptcnews 》𝐈𝐍𝐒𝐓𝐀𝐆𝐑𝐀𝐌: https://www.instagram.com/ptc_news/ 》𝐓𝐞𝐥𝐞𝐠𝐫𝐚𝐦 : https://t.me/PTC_News 》Download *PTC Play App* (android): https://play.google.com/store/apps/details?id=com.ptcplayapp 》Download *PTC...

    published: 08 Mar 2025
  • Phagwara SHO suspend: महंगा पड़ा सब्जी की टोकरी को लात मारना, वीडियो वायरल होने पर SHO सस्पेंड

    पंजाब के फगवाड़ा में कोरोना निर्देशों का पालन करवाने के दौरान हंगामा उस समय हो गया जब सिटी थाने के इंस्पेक्टर नवदीप सिंह ने गली में सब्जी बेच रहे एक वेंडर की रेहड़ी से पहले तराजू उठा लिया फिर बाद में उसकी सब्जी गिरा दी और फिर... #PhagwaraShoSuspend #Punjab Download Amar Ujala App for Breaking News in Hindi & Live Updates. https://www.amarujala.com/channels/downloads?tm_source=text_share About Channel: ज़ी न्यूज़ देश का सबसे भरोसेमंद हिंदी न्यूज़ चैनल है। जो 24 घंटे लगातार भारत और दुनिया से जुड़ी हर ब्रेकिंग न्यूज़, नवीनतम समाचार, राजनीति, मनोरंजन और खेल से जुड़ी खबरे आपके लिए लेकर आता है। इसलिए बने रहें ज़ी न्यूज़ के साथ और सब्सक्राइब करें | Zee News is India's most trusted Hindi News Channel with 24 hour coverage. Zee News covers Breaking news, Latest news, Politics, Entertainment and Sp...

    published: 06 May 2021
  • Same Day Edit Wedding Highlight 2025 || 4K || Bhanu + smile | SHIVAM PHOTOGRAPHY PHAGWARA

    Best Indian Hindu Wedding Cinematic Highlights 2025 4k | Bhanu + smile | SHIVAM PHOTOGRAPHY India. Shivam Wadhwa Photography Phagwara is determined to offer you Indian weddings in the most authentic way which is possible. Want to get your dream wedding captured by us? We offer the best wedding photography & videography services so that you can revisit and relish them for the years to come—forever. Contact us Now: Call: 7888584171 Facebook: https://www.facebook.com/Shivamwadhwa... Instagram:https://instagram.com/shivam_wadhwa_p... Best Pre Wedding Shoot 2025 Indian Wedding Shoot Wedding Photography in Phagwara Shivam Phagwara Wedding Videos Phagwara Bold Wedding Shoot Wedding Video Shooting Marriage Videos The shooting of Indian Weeding Parlour Shooting in Phagwara Shooting by Shivam #...

    published: 12 Mar 2025
  • This is not Dubai - This is Punjab😍 Eastwood Village - Jalandhar Phagwara GT Road #shorts #punjab

    That's right! This is not Dubai, This is Eastwood Village situated on Jalandhar - Phagwara GT Road, Punjab where modern elegance meets family-friendly fun in Jalandhar. This high street mall is a true haven, boasting an array of global fast-food and fine-dining options, high-end fashion outlets, and captivating activities for kids. With its captivating architecture, Eastwood Village offers a seamless blend of tradition and modernity, inviting visitors to experience the best in dining, shopping, and entertainment, all in one dynamic location. You can enjoy amazing food from restaurants like Haldiram's, McDonald's, KFC, Sagar Ratna, Swagath, Sardar-Ji-Bakhsh Coffee, Greko, Nirula's, Giani's, Baba's Chicken, Belgian Waffle, Apna Chai Wala, Chai Vyanjan, Hungry Point and many more. Shop yo...

    published: 04 Apr 2024
PHAGWARA  - पंजाब का शानदार शहर || FACTS ABOUT PHAGWARA || PHAGWARA PUNJAB || PHAGWARA CITY ||
3:10

PHAGWARA - पंजाब का शानदार शहर || FACTS ABOUT PHAGWARA || PHAGWARA PUNJAB || PHAGWARA CITY ||

  • Order:
  • Duration: 3:10
  • Uploaded Date: 19 Aug 2024
  • views: 38408
PHAGWARA - पंजाब का बदनाम शहर || FACTS ABOUT PHAGWARA || PHAGWARA PUNJAB || PHAGWARA CITY || #PHAGWARA #Punjab #facts #touristplaces #tourism #travel_hero #abhi_gupta Keywords - Phagwara Phagwara tourist places Facts about Phagwara Interesting facts about Phagwara Phagwara tourism ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Note- All the images and pictures shown in video belongs to the respected owners and not me..... _____ I am not owner of any picture shown in the videos. Disclaimer- Video is for educational purpose only. copyright disclaimer under section 107 of the copyright act 1976 , allowance is made for "fair use" for purposes such as criticism , comment , news reporting, teaching, scholarship and Research .Fair use is a use permitted by copyright statute that might otherwise be infringing.non-profit, educational or personal use tips the balance in favour of fair use. ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖ | Like | share | Subscribe | Thank you for watching 🙏 ( 𝘼𝘽𝙃𝙄 𝙂𝙐𝙋𝙏𝘼 ) ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
https://wn.com/Phagwara_पंजाब_का_शानदार_शहर_||_Facts_About_Phagwara_||_Phagwara_Punjab_||_Phagwara_City_||
Punjab Tour Ep - 29 | Phagwara Punjab Street Food | Punjabi Street Food
44:26

Punjab Tour Ep - 29 | Phagwara Punjab Street Food | Punjabi Street Food

  • Order:
  • Duration: 44:26
  • Uploaded Date: 08 Oct 2024
  • views: 343029
This video is about Punjab Phagwara City . In this video we have covered Best street food in Phagwara along with the things to do in Phagwara. Location Phagwara City, Punjab 1. Vijay Di Hatti 2.Masala Market 3. Bata Kulche Cholley 4. Gurdwara Shri Sukhchain Sahib 5. Jangi De Pakore 6. Sudhir Sweets Shop 7. J K Dhaba 8. Paakhar di Jalebi Keep in Touch INSTAGRAM : https://www.instagram.com/amritsarwalkingtours FACEBOOK : https://www.Facebook.com/amritsarwalkingtour SUBSCRIBE : https://youtube.com/channel/UC1nVUbcLU8P_cLDkzQdewOw KEEP SUPPORTING | KEEP SMILLING #punjabstreetfood #punjabtour #foodinpunjab Punjabi food Punjabi Breakfast Punjabi Nashta Amritsari Kulcha Streetfood Street food India Indian Street Food Indian Food
https://wn.com/Punjab_Tour_Ep_29_|_Phagwara_Punjab_Street_Food_|_Punjabi_Street_Food
ਫਗਵਾੜਾ ਨੂੰ ਸਰਮਸ਼ਾਰ ਕਰ ਗਿਆ ਢਾਬੇ ਦੀ ਲੁੱਟ ਖਸੁੱਟ ਦਾ ਵਿਵਾਦ ।  ਜਗਦੀਪ ਸਿੰਘ ਥੜੀ ਦੀ ਧੂੜਾ ਪੁੱਟ ਪੱਤਰਕਾਰੀ
7:55

ਫਗਵਾੜਾ ਨੂੰ ਸਰਮਸ਼ਾਰ ਕਰ ਗਿਆ ਢਾਬੇ ਦੀ ਲੁੱਟ ਖਸੁੱਟ ਦਾ ਵਿਵਾਦ । ਜਗਦੀਪ ਸਿੰਘ ਥੜੀ ਦੀ ਧੂੜਾ ਪੁੱਟ ਪੱਤਰਕਾਰੀ

  • Order:
  • Duration: 7:55
  • Uploaded Date: 11 Mar 2025
  • views: 39451
The Phagwara Headline Live ਫਗਵਾੜਾ ਨੂੰ ਸਰਮਸ਼ਾਰ ਕਰ ਗਿਆ ਢਾਬੇ ਦੀ ਲੁੱਟ ਖਸੁੱਟ ਦਾ ਵਿਵਾਦ । ਜਗਦੀਪ ਸਿੰਘ ਥੜੀ ਦੀ ਧੂੜਾ ਪੁੱਟ ਪੱਤਰਕਾਰੀ #jagdeepsinghthali #punjabilokchannel #phagwaradhaba #jagdeepsinghthalipatarkar #jagdeepsinghjournalist #jagdeepsinghpunjabilok #phagwara #phagwaracity #phagwaranews #thephagwaraheadlinelive #phagwaradhaba #phagwarabusstansdhaba #journalism
https://wn.com/ਫਗਵਾੜਾ_ਨੂੰ_ਸਰਮਸ਼ਾਰ_ਕਰ_ਗਿਆ_ਢਾਬੇ_ਦੀ_ਲੁੱਟ_ਖਸੁੱਟ_ਦਾ_ਵਿਵਾਦ_।_ਜਗਦੀਪ_ਸਿੰਘ_ਥੜੀ_ਦੀ_ਧੂੜਾ_ਪੁੱਟ_ਪੱਤਰਕਾਰੀ
Phagwara | ਬਾਬਾ ਬਾਲਕ ਨਾਥ ਦਾ Poster ਪਾੜਨ 'ਤੇ ਵਿਵਾਦ, Hindu ਸੰਗਠਨਾਂ ਦੀ ਪ੍ਰਸ਼ਾਸਨ ਨੂੰ ਚੇਤਾਵਨੀ | #local18
6:30

Phagwara | ਬਾਬਾ ਬਾਲਕ ਨਾਥ ਦਾ Poster ਪਾੜਨ 'ਤੇ ਵਿਵਾਦ, Hindu ਸੰਗਠਨਾਂ ਦੀ ਪ੍ਰਸ਼ਾਸਨ ਨੂੰ ਚੇਤਾਵਨੀ | #local18

  • Order:
  • Duration: 6:30
  • Uploaded Date: 13 Mar 2025
  • views: 4827
ਬਾਬਾ ਬਾਲਕ ਨਾਥ ਦਾ ਪੋਸਟਰ ਪਾੜਨ 'ਤੇ ਭਖਿਆ ਵਿਵਾਦ, ਮਸੀਹ ਭਾਈਚਾਰੇ ਦਾ ਬੋਰਡ ਦੇਖ ਗੁਸੇ 'ਚ ਆਏ ਹਿੰਦੂ ਸੰਗਠਨਾਂ ਨੇ ਪ੍ਰਸ਼ਾਸਨ ਨੂੰ ਦਿੱਤੀ ਚੇਤਾਵਨੀ #phagwaranews #bababalaknath #hindu #local18 Find Latest News, Top Headlines And breaking news only on News18 Punjab Youtube Channel. For All Live Coverage, Exclusive And Latest News Update, Watch The LIVE TV Of News18 Punjab, Catch The Latest News LIVE News18 Mobile App: https://onelink.to/desc-youtube News 18 Punjab is an exclusive news channel on YouTube which streams news related to Punjab, Nation and the World. Along with the news, the channel also has debates on contemporary topics and shows on special series which are interesting and informative. News18 ਪੰਜਾਬ एक क्षेत्रीय न्यूज़ चैनल है जिसपर ਪੰਜਾਬ, हरियाणा, हिमाचल, देश एवं विदेश की खबरें प्रकाशित की जाती हैं | समाचारों क साथ-साथ इस चैनल पर समकालीन विषयों पर वाद-विवाद एवं विशेष सीरीज भी प्रकाशित होती हैं जो की काफी रोचक एवं सूचनापूर्ण हैं | Subscribe to our channel: http://bit.ly/1IMIp73 For Latest news and updates, log on to: https://bit.ly/2Cx91Ok For Latest news and updates, log on to: https://onelink.to/desc-youtube Follow Us on Twitter: https://twitter.com/News18Punjab Like Us on Facebook: https://www.facebook.com/News18Punjab
https://wn.com/Phagwara_|_ਬਾਬਾ_ਬਾਲਕ_ਨਾਥ_ਦਾ_Poster_ਪਾੜਨ_'ਤੇ_ਵਿਵਾਦ,_Hindu_ਸੰਗਠਨਾਂ_ਦੀ_ਪ੍ਰਸ਼ਾਸਨ_ਨੂੰ_ਚੇਤਾਵਨੀ_|_Local18
PHAGWARA~night life.ਫਗਵਾੜਾਂ~Phagwara bazar,hargobind nagar,cinema road,bus stand.bansawala bazar.
10:34

PHAGWARA~night life.ਫਗਵਾੜਾਂ~Phagwara bazar,hargobind nagar,cinema road,bus stand.bansawala bazar.

  • Order:
  • Duration: 10:34
  • Uploaded Date: 07 May 2022
  • views: 57589
#phagwara #phagwaracity #phagwarawholesalesuit PHAGWARE di raat di video Night time video of PHAGWARA PHAGWARE ki raat ke time ki video Eh video banai gayi a raat de time vic PHAGWARE de bazar di te PHAGWARE de bus aade di and hor bhi bahut sariya locations di Phagwara is a city and a Municipal Corporation with an area of 20 km. in Kapurthala district in Punjab, India the district headquarter, 124 kilometres away from Chandigarh and 21 kilometres away from Jalandhar 361 kilometres from New Delhi. Phagwara is a city area and is famous for sugar, glucose, starchh, fine fabric textile of jct mill, auto parts manufacturing for engines in Punjab. Universities Lovely Professional University GNA University Colleges Guru Nanak College pyramid college of business and technology Kamla Nehru college for women. Ramgarhia Institute of Engineering & Technology Ramgarhia Polytechnic College Ramgarhia College of Education Ramgarhia College Schools Sant Sarwan Dass Model School Hadiabad,Phagwara G.D.R convent senior secondary school Government Senior Secondary School (Boys) known as J.J. School Government Senior Secondary School (Girls) Aman Public School Arya model senior secondary school St. Joseph's Convent School Kamla Nehru Public School Swami Sant Dass Public School Mele Singh Missionary School Cambridge International School Saffron Public School Tagore Public High School Jain Model Senior Secondary School Lord Mahavira Jain Public School St. Sai Ram Sunrise High School New Sunflower High School Guru Harkrishan National Model Senior Secondary School S.D. Model senior secondary School MAA Ambay girls Senior secondary School T.W.E.I. Senior Secondary School Dehradoon international public school, Villages in Phagwara tehsil Bhabiana Nangal Majja Kotli Khakhian Madhopur Indna Kalaske Manawali Sapror Bhullarai Chachoki Brahampur, Phagwara Lakhpur Maheru Jagpalpur Ranipur Palahi Mayopatti Narur Panchhat Gandhwan Athouli Nihalgarh (Nawa Pind) Jagat Pur Jattan Thakarki Pandwa Sangatpur Chak Prema Dhadday Dhadoli Bir Dhadoli Rawalpindi Khatti Rampur Sunra Malikhpur Domeli Babeli Prem Pura Khera, Nangal Bhanoki Bir Puadh Rehana Jattan Khangura Chak Hakim Virk Mouli Chaheru Ucha Pind Hadiabad Kotrani Khalwara Dhak Pandori Balaloan Pind Chak Hakim Drawesh Pind Balaloan Pind Thakarki Sahni Rampur Sunran
https://wn.com/Phagwara~Night_Life.ਫਗਵਾੜਾਂ~Phagwara_Bazar,Hargobind_Nagar,Cinema_Road,Bus_Stand.Bansawala_Bazar.
Miss Mahi Best Dance Performance 2022 | Sansar Dj Links Phagwara | Best Punjabi Model In 2022
0:13

Miss Mahi Best Dance Performance 2022 | Sansar Dj Links Phagwara | Best Punjabi Model In 2022

  • Order:
  • Duration: 0:13
  • Uploaded Date: 08 Feb 2022
  • views: 1797034
Miss Mahi Best Dance Performance 2022 | Sansar Dj Links Phagwara | Best Punjabi Model In 2022
https://wn.com/Miss_Mahi_Best_Dance_Performance_2022_|_Sansar_Dj_Links_Phagwara_|_Best_Punjabi_Model_In_2022
Phagwara : ਦਾਰੂ ਦੇ ਨਸ਼ੇ ‘ਚ NRI ਨੇ ‘ਉਡਾ’ ‘ਤੇ 2 ਬੰਦੇ, ਕਈ ਕਿਲੋਮੀਟਰ ਕਾਰ ਥੱਲੇ ਫਸੇ ਮੋਟਰਸਾਈਕਲ ਨੂੰ ਘੜੀਸਿਆ !
7:11

Phagwara : ਦਾਰੂ ਦੇ ਨਸ਼ੇ ‘ਚ NRI ਨੇ ‘ਉਡਾ’ ‘ਤੇ 2 ਬੰਦੇ, ਕਈ ਕਿਲੋਮੀਟਰ ਕਾਰ ਥੱਲੇ ਫਸੇ ਮੋਟਰਸਾਈਕਲ ਨੂੰ ਘੜੀਸਿਆ !

  • Order:
  • Duration: 7:11
  • Uploaded Date: 08 Mar 2025
  • views: 45085
ਦਾਰੂ ਦੇ ਨਸ਼ੇ ‘ਚ NRI ਨੇ ‘ਉਡਾ’ ‘ਤੇ 2 ਬੰਦੇ, ਕਈ ਕਿਲੋਮੀਟਰ ਕਾਰ ਥੱਲੇ ਫਸੇ ਮੋਟਰਸਾਈਕਲ ਨੂੰ ਘੜੀਸਿਆ ! #NRI #CarAccident #Goraya #Phagwara #Motorcycle #PTCNews PTC NEWS is dedicated to the soul and heritage of Punjab offering authentic updates on current events, news, happenings and people that are of interest to Punjabis all over. (𝑷𝒂𝒊𝒅 𝒎𝒖𝒔𝒊𝒄 𝒖𝒔𝒆𝒅 𝒊𝒏 𝒕𝒉𝒆 𝒗𝒊𝒅𝒆𝒐, 𝒑𝒓𝒐𝒗𝒊𝒅𝒆𝒅 𝒃𝒚 𝑬𝒏𝒗𝒂𝒕𝒐) Connect with PTC News for latest updates: 》Subscribe to our channel: https://bit.ly/2Orydr1 》𝐕𝐢𝐬𝐢𝐭 𝐖𝐞𝐛𝐬𝐢𝐭𝐞 : https://www.ptcnews.tv 》𝐅𝐀𝐂𝐄𝐁𝐎𝐎𝐊 : https://www.facebook.com/ptcnewsonline/ 》𝐓𝐖𝐈𝐓𝐓𝐄𝐑 : https://twitter.com/ptcnews 》𝐈𝐍𝐒𝐓𝐀𝐆𝐑𝐀𝐌: https://www.instagram.com/ptc_news/ 》𝐓𝐞𝐥𝐞𝐠𝐫𝐚𝐦 : https://t.me/PTC_News 》Download *PTC Play App* (android): https://play.google.com/store/apps/details?id=com.ptcplayapp 》Download *PTC Play App* (iOS): https://itunes.apple.com/in/app/ptc-play/id1440258102
https://wn.com/Phagwara_ਦਾਰੂ_ਦੇ_ਨਸ਼ੇ_‘ਚ_Nri_ਨੇ_‘ਉਡਾ’_‘ਤੇ_2_ਬੰਦੇ,_ਕਈ_ਕਿਲੋਮੀਟਰ_ਕਾਰ_ਥੱਲੇ_ਫਸੇ_ਮੋਟਰਸਾਈਕਲ_ਨੂੰ_ਘੜੀਸਿਆ
Phagwara SHO suspend: महंगा पड़ा सब्जी की टोकरी को लात मारना, वीडियो वायरल होने पर SHO सस्पेंड
0:46

Phagwara SHO suspend: महंगा पड़ा सब्जी की टोकरी को लात मारना, वीडियो वायरल होने पर SHO सस्पेंड

  • Order:
  • Duration: 0:46
  • Uploaded Date: 06 May 2021
  • views: 197481
पंजाब के फगवाड़ा में कोरोना निर्देशों का पालन करवाने के दौरान हंगामा उस समय हो गया जब सिटी थाने के इंस्पेक्टर नवदीप सिंह ने गली में सब्जी बेच रहे एक वेंडर की रेहड़ी से पहले तराजू उठा लिया फिर बाद में उसकी सब्जी गिरा दी और फिर... #PhagwaraShoSuspend #Punjab Download Amar Ujala App for Breaking News in Hindi & Live Updates. https://www.amarujala.com/channels/downloads?tm_source=text_share About Channel: ज़ी न्यूज़ देश का सबसे भरोसेमंद हिंदी न्यूज़ चैनल है। जो 24 घंटे लगातार भारत और दुनिया से जुड़ी हर ब्रेकिंग न्यूज़, नवीनतम समाचार, राजनीति, मनोरंजन और खेल से जुड़ी खबरे आपके लिए लेकर आता है। इसलिए बने रहें ज़ी न्यूज़ के साथ और सब्सक्राइब करें | Zee News is India's most trusted Hindi News Channel with 24 hour coverage. Zee News covers Breaking news, Latest news, Politics, Entertainment and Sports from India & World. ------------------------------------------------------------------------------------------------------------- Download our mobile app: http://tiny.cc/c41vhz Subscribe to our channel: http://tiny.cc/ed2vhz Watch Live TV : https://zeenews.india.com/live-tv Subscribe to our other network channels: Zee Business: https://goo.gl/fulFdi WION: http://tiny.cc/iq1vhz Daily News and Analysis: https://goo.gl/B8eVsD Follow us on Google news- https://bit.ly/2FGWI01 ------------------------------------------------------------------------------------------------------------- You can also visit our website at: http://zeenews.india.com/ Like us on Facebook: https://www.facebook.com/ZeeNews Follow us on Twitter: https://twitter.com/ZeeNews Follow us on Google News for latest updates: Zee News:- https://bit.ly/2Ac5G60 Zee Business:- https://bit.ly/36vI2xa DNA India:- https://bit.ly/2ZDuLRY WION: https://bit.ly/3gnDb5J Zee News Apps : https://bit.ly/ZeeNewsApps
https://wn.com/Phagwara_Sho_Suspend_महंगा_पड़ा_सब्जी_की_टोकरी_को_लात_मारना,_वीडियो_वायरल_होने_पर_Sho_सस्पेंड
Same Day Edit Wedding Highlight 2025 || 4K || Bhanu + smile | SHIVAM PHOTOGRAPHY PHAGWARA
5:00

Same Day Edit Wedding Highlight 2025 || 4K || Bhanu + smile | SHIVAM PHOTOGRAPHY PHAGWARA

  • Order:
  • Duration: 5:00
  • Uploaded Date: 12 Mar 2025
  • views: 256
Best Indian Hindu Wedding Cinematic Highlights 2025 4k | Bhanu + smile | SHIVAM PHOTOGRAPHY India. Shivam Wadhwa Photography Phagwara is determined to offer you Indian weddings in the most authentic way which is possible. Want to get your dream wedding captured by us? We offer the best wedding photography & videography services so that you can revisit and relish them for the years to come—forever. Contact us Now: Call: 7888584171 Facebook: https://www.facebook.com/Shivamwadhwa... Instagram:https://instagram.com/shivam_wadhwa_p... Best Pre Wedding Shoot 2025 Indian Wedding Shoot Wedding Photography in Phagwara Shivam Phagwara Wedding Videos Phagwara Bold Wedding Shoot Wedding Video Shooting Marriage Videos The shooting of Indian Weeding Parlour Shooting in Phagwara Shooting by Shivam #shivamwadhwaphotography #weddinghighlights2023 #preweddingphoto Contact for WEDDINGS / / PRE WEDDINGS / FASHION / PORTFOLIOS / PRODUCTS / AND OTHER EVENTS // /A FILM BY SHIVAM PHOTOGRAPHY//PHAGWARA// |MOB ; 78885841741 2025 best cinematic wedding highlight 4k,best cinematic punjabi sikh wedding 2023 highlights,cinematic wedding highlight 2023,2022 best cinematic hindu wedding highlight,best hindu wedding highlight 2022,punjabi wedding highlight 2023,best sikh wedding highlight | 2023,hindu wedding highlights 2023,best pre wedding 2023 | studio p3,sikh wedding cinematic,wedding highlight,wedding,4k pre wedding 2022,best cinematic highlight 2023,wedding highlights
https://wn.com/Same_Day_Edit_Wedding_Highlight_2025_||_4K_||_Bhanu_Smile_|_Shivam_Photography_Phagwara
This is not Dubai - This is Punjab😍 Eastwood Village - Jalandhar Phagwara GT Road #shorts #punjab
0:18

This is not Dubai - This is Punjab😍 Eastwood Village - Jalandhar Phagwara GT Road #shorts #punjab

  • Order:
  • Duration: 0:18
  • Uploaded Date: 04 Apr 2024
  • views: 26029
That's right! This is not Dubai, This is Eastwood Village situated on Jalandhar - Phagwara GT Road, Punjab where modern elegance meets family-friendly fun in Jalandhar. This high street mall is a true haven, boasting an array of global fast-food and fine-dining options, high-end fashion outlets, and captivating activities for kids. With its captivating architecture, Eastwood Village offers a seamless blend of tradition and modernity, inviting visitors to experience the best in dining, shopping, and entertainment, all in one dynamic location. You can enjoy amazing food from restaurants like Haldiram's, McDonald's, KFC, Sagar Ratna, Swagath, Sardar-Ji-Bakhsh Coffee, Greko, Nirula's, Giani's, Baba's Chicken, Belgian Waffle, Apna Chai Wala, Chai Vyanjan, Hungry Point and many more. Shop your favourite fashion brands includes Puma, Adidas, Sabhyata, Shree, Knockout by Kapsons, Alamod, Calcetto, Tommy Hilfiger, Club York, Pepe Jeans, Mochi, Metro Shoes, Madame, Octave, Crimsone Club and many more.
https://wn.com/This_Is_Not_Dubai_This_Is_Punjab😍_Eastwood_Village_Jalandhar_Phagwara_Gt_Road_Shorts_Punjab
'); } 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)); } }); }); }); // -->
×