#insertAfter
Explore tagged Tumblr posts
josegremarquez · 25 days ago
Text
after(), before(), insertAfter(), insertBefore()
Insertar Contenido en el DOM con jQuery. Introducción En el desarrollo web, la capacidad de insertar contenido dinámicamente en el DOM es esencial para crear interfaces interactivas y reutilizables. jQuery, una biblioteca JavaScript altamente popular, ofrece varios métodos poderosos para insertar contenido en posiciones específicas dentro del DOM. En este artículo, exploraremos los métodos…
0 notes
nhaneh · 2 years ago
Text
Tumblr media
So I don't really know what Illustrator is like from a user perspective because I find the UI a mostly incomprehensible bloated mess that is determined to work entirely unlike most imaging software I've ever used, but I do interact with it quite a bit via the scripting and plugin SDK APIs and... yeah.
So the thing I needed to do was create a TextFrameArt object at a particular point in a document, set its text contents, text font, text size, and colour - sounds like it should be simple enough, right? Just create the object, then set contents, font, size, position, text justification, and colour as properties to that object?
Oh no, no no no, here's what it actually requires you to do:
Step one, create the TextFrameArt object by calling AITextFrameSuite::NewPointText(). Conveniently this also assigns its initial anchor point, location in the layer stack, and whether the text is horizontal or vertical, so that's nice. It's the only nice thing in this entire chain of events.
Step two, get a reference to the text range that contains the actual contents of this text frame by calling AITextFrameSuite::GetATETextRange()
Step three, pass the TextRangeRef pointer you received in step two into the constructor of an ATE::ITextRange object to get an actual text range object that you can do things with.
Step four, now we can finally insert the text we want into our ITextRange object via calling the method InsertAfter(). However to avoid this being too simple and straightforward, you can't throw just any kind of text in there, but it has to be a unicode C-type string, retrievable through ai::UnicodeString::as_ASUnicode()::c_str()
Step five, with the contents in place, we move on to setting the font, and to do that we must first obtain an AIFontKey reference through calling AIFontSuite::FindFont() with the internal name of the font we're looking for; for example, if we want Times New Roman regular, the name we'd have to use to access it is TimesNewRomanPSMT. Let's just pretend we already knew that rather than go through how to find out since this is already long enough.
Step six, call AIFontSuite::FontFromFontKey() on our AIFontKey reference to get an ATE::FontRef reference.
Step seven, pass the ATE::FontRef reference to the constructor of an ATE::IFont object to get an actual font object that we can actually use.
Step eight, create an empty ATE::ICharFeatures object and apply our ATE::IFont object and our desired font size to the ATE:ICharFeatures object via .SetFont() and .SetFontSize()
Step nine, call AIATEPaintSuite::CreateATEApplicationPaint() to get an ATE::ApplicationPaintRef reference from our AIColor object that contains the text fill colour that we want.
Step ten, pass the ATE::ApplicationPaintRef reference into the constructor of an ATE::IApplicationPaint object.
Step eleven, we can now also set the font colour by calling .SetFillColor on our ATE::ICharFeatures object from step eight.
Step twelve, assign our ATE::ICharFeatures to the ATE::ITextRange object from step three with .SetLocalCharFeatures(), at which point we will finally have set the font, font size, and fill colour of the text.
Step thirteen, oh but we're not done because we also need to set the left/right/center text justification! And for this we need to create an ATE::IParaFeatures object! We can directly use .SetJustification() to set justification to one of the values contained within the enum ATE::ParagraphJustification.
Step fourteen, assign the ATE::IParaFeatures to the ATE::ITextRange from step three by way of .SetLocalParaFeatures()
And we're finally done! simple, right? ;D welcome to hell lmao
@croissant-au-chocolat
Love how Adobe Illustrator's approach to text frame objects is basically one of "how can we make this as unnecessarily overcomplicated as humanly possible"
7 notes · View notes
necromancercoding · 4 years ago
Note
¡Hola! ¡Ante todo muchas gracias por la ayuda que prestas! No sé si ya has respondido a esto, pero ¿cómo haces para poner títulos dobles o subtítulos a los nombres de las categorías?
¡Hola anon! Pues es muy sencillo: edita tu(s) categoría(s) y en el título pon, por ejemplo, <i>Un subtítulo lindo</i>. Luego ve a tu CSS y ponle .forabg .header h2 i { display:block; } (suponiendo que no has cambiado donde tienes la variable que genera el título de las categorías). Luego ya es cuestión de estilizarlo para que quede como quieras, pero es super sencillo. Para los títulos dobles puedes hacer lo mismo o poner una simple línea de JS en Índices y Subforos:
$(document).ready(function() { $('.forabg .header h2').each(function(){ $(this).clone().insertAfter(this).addClass('titlecloned'); }); });
Y ya lo tendrías 😁 Podrías editar ese 'clon' usando h2.titlecloned.
8 notes · View notes
creatiview · 2 years ago
Text
[ad_1] PIB Fact Check: The government’s fact-checking unit ‘PIB Fact Check’ has detected fake news doing rounds on the internet, which claims if a beneficiary is seeking a loan of 1 lakh under PM Mudra Yojana, then he/she will have to pay Rs 1,750 to avail the loan. The government’s fact-checking team has completely rejected this fake announcement being circulated on social media with a letter attached to it. “An approval letter claims to grant a loan of Rs 1,00,000 under the PM Mudra Yojana on payment of Rs 1,750 as loan agreement charges,” PIB Fact Check said through its Twitter handle. While terming it misleading, it further said, “This letter is Fake. Finance Ministry has not issued this letter.” The tweet also has the link to the Mudra scheme page that answers all frequently asked questions. Through Pradhan Mantri Mudra Yojana, one can take a loan of Rs 50,000 to Rs 10 lakh. The loan is collateral free and there is no processing fee on it. What is PM Mudra Yojana? PM Mudra Yojana is a government scheme that was started in the year 2015. In this scheme, loans are given to non-corporate and non-agricultural works. The collateral free loans up to Rs 10 lakh can be availed without mortgaging properties and neither it requires deposit security. What is Mudra? MUDRA, which stands for Micro Units Development & Refinance Agency is a financial institution set up by the government for the development and refinancing of micro units enterprises. The purpose of MUDRA is to provide funding to the non-corporate small business sector through various Last Mile Financial Institutions like Banks, NBFCs, and MFIs. Loans available in three categories Under this scheme, the government gives loans in three categories. Shishu: covering loans up to 50,000/- Kishor: covering loans above 50,000/- and up to 5 lakhs Tarun: covering loans above 5 lakhs to 10 lakhs (function ($) Drupal.behaviors.pagerload = attach: function (context, settings) $(document).ready(function () var maindiv = false; var fbcontainer=""; var fbid = ''; var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr220603"); var fdiv = ''; var ci = 1; var pl = $(".star220603 > div.field-name-body > div.field-items > div.field-item").children('p').length; var adcount = 0; if (pl > 3) $(".star220603 > div.field-name-body > div.field-items > div.field-item").children('p').each(function (i, n) ci = parseInt(i) + 1; t = this; var htm = $(this).html(); d = $(""); if ((i + 1) % 3 == 0 && (i + 1) > 2 && $(this).html().length > 20 && ci < pl && adcount < 3) if (adcount == 2) $('').insertAfter(t); adcount++; else if (adcount >= 3) return false; ); $(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); var rightside = $('div#main-rhs220603 > div.main-contents:first').clone(); var outpg = $('body').children('.outpage'); $(".sidebar220603").theiaStickySidebar(); if ($.autopager) var use_ajax = true; function loadshare(curl) history.pushState('', '', curl); if (window.OBR) window.OBR.extern.researchWidget(); if (_up == false) var cu_url = curl; ga('set', 'page', curl); ga('send', 'pageview'); if (use_ajax == false)
var view_selector="div#maincontent"; var content_selector = view_selector; var items_selector = content_selector + ' > div.repeat-block'; var pager_selector="div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz"; var next_selector="div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz > a:last"; var auto_selector="div.view-zbiz-article-prev-next"; var img_location = view_selector + ' > div.repeat-block:last'; var img_path=""; var img = ''; var x = 0; var url=""; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager( appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function () $(img_location).after(img); , load: function () $('#views_infinite_scroll-ajax-loader').remove(); $('div#main-rhs' + x).empty(); //console.log($('div#main-rhs220603 > div.sidebar220603 > div:first').text()); $('#maincontent >.row:last').before('NEXT STORY'); $(rightside).clone().appendTo('div#main-rhs' + x); $(".sidebar" + x).theiaStickySidebar(); var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr" + x); var fdiv = ''; $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('#maincontent').children().find("#ad-" + x); var $dfpAdMob = $('#maincontent').children().find("#ad-mob-" + x); var $dfpAdrhs = $('#main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); var $dfpAdrhs2 = $('#main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x); $('body').children('.outpage').empty().append(' '); var $dfpAdOutofpage = $('body').children('div.opage'); var instagram_script = document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js"; setTimeout(function () var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if (twit == 0) twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); if (twit > 0) if (typeof (twttr) != 'undefined') twttr.widgets.load(); else $.getScript('//platform.twitter.com/widgets.js'); if (insta > 0) $('#maincontent >.row:last').after(instagram_script); window.instgrm.Embeds.process(); , 1500);
); $(document).delegate("button[id^='mf']", "click", function () fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr"); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); ); var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; $(window).scroll(function () var last = $(auto_selector).filter(':last'); var lastHeight = last.offset().top; var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) _up = false; else _up = true; previousScroll = currentScroll; var cutoff = $(window).scrollTop() + 64; $('div[id^="row"]').each(function () if ($(this).offset().top + $(this).height() > cutoff) if (prevLoc != $(this).children().find('.article-box').attr('data-url')) prevLoc = $(this).children().find('.article-box').attr('data-url'); $('html head').find('title').text($(this).children().find('.article-box').attr('data-title')); loadshare(prevLoc); return false; // stops the iteration after the first one on screen ); if (lastHeight + last.height() < $(document).scrollTop() + $(window).height()) url = $(next_selector).attr('href'); x = $(next_selector).attr('id'); ); ); ; )(jQuery); [ad_2] Source link
0 notes
gslin · 3 years ago
Text
GOV.UK 拔掉網頁上的 jQuery
英國政府的網站拔掉 jQuery 了:「GOV.UK drops jQuery from their front end.」,Hacker News 上的討論也可以看一下:「Gov.uk drops jQuery from their front end (web.dev)」。 當年會選擇用 jQuery 大概有幾個原因,第一個是當年 (很舊的 browser 版本) 對 DOM 的操作非常的混亂,像是: 有 appendChild() (IE5+) 但沒有 prependChild()。後來才有 append() 與 prepend() (兩個在 IE 都沒支援,要到 Edge 17+)。 有 insertBefore() (IE6+) 但沒有 insertAfter()。後來是透過 insertAdjacentElement() (IE5+ but only for…
View On WordPress
0 notes
classyfoxdestiny · 4 years ago
Text
ایپل آئی فون 13 لانچ: آئی فون 13 پرو میکس نام کی اسکیم کا انکشاف ٹیکنالوجی نیوز۔
ایپل آئی فون 13 لانچ: آئی فون 13 پرو میکس نام کی اسکیم کا انکشاف ٹیکنالوجی نیوز۔
ایپل آئی فون 13۔
فیچرز کے لحاظ سے ، آئی فون 13 ایک 120Hz ریفریش ریٹ کے لیے سپورٹ کے ساتھ آنے کی توقع ہے اور اگر افواہوں پر یقین کیا جائے تو یہ آئی ٹی پی 13 ڈسپلے کے ساتھ آئی فون 13 پرو سیریز میں 120 ہز ہائی ریفریش ریٹ پیش کرے گا۔
(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk')); (function ($) /*Drupal.behaviors.pagerload = attach: function (context, settings) */ $(document).ready(function() $(".sidebar").theiaStickySidebar(); /*$.get( "/hindi/zmapp/mobileapi/sections.php?sectionid=17,18,19,23,21,22,25,20", function( data ) $( "#sub-menu" ).html( data ); alert( "Load was performed." ); );*/ var nextpath=""; var pg = 1; var nextload= true; var string = '';var ice = 0; var playerFly; var load = '
Loading
'; var cat = "?cat=120581"; //$(".main-rhs2391700").theiaStickySidebar(); var instagram_script=document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js"; document.head.appendChild(instagram_script); /*************************************/ /*$(window).scroll(function() var last = $('div.listing').filter('div:last'); var lastHeight = last.offset().top ; if(lastHeight + last.height() < $(document).scrollTop() + $(window).height() && nextload==true) var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; $.ajax( url: "/micros/article-list.php" + cat + nextpath, async: true, dataType: "json", beforeSend: function() $('div.listing').append(load); nextload=false; //console.log("/micros/article-list.php" + cat + nextpath); ice = 1; circle = $('.center-section').find('#green-halo'); myTimer = $('.center-section').find('#myTimer'); angle = 0; Inverval = setInterval(function () $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) angle = 1; angle += angle_increment; .bind(this),interval); , success: function(data) nextload=false; //console.log("success"); //console.log(data); $.each(data['rows'], function(key,val) //console.log("data found"); ice = 2; if(val['id']!='2391700') string = '
'+val["tag"]+'
' + val["title"] + '
' + val["summary"] + '
Read Full Article
'; $('div.listing').append(string); ); , error:function(xhr) //console.log("Error"); //console.log("An error occured: " + xhr.status + " " + xhr.statusText); nextload=false; , complete: function() $('div.listing').find(".loading-block").remove();; pg +=1; //console.log("mod" + ice%2); nextpath="&page=" + pg; //console.log("request complete" + nextpath); cat = "?cat=120581"; //console.log(nextpath); nextload=(ice%2==0)?true:false; );
//lastoff = last.offset(); //console.log("**" + lastoff + "**"); );*/ var maindiv = false; var dis = 0; var fbcontainer=""; var fbid = ''; var fb_script=document.createElement('script'); fb_script.text= "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr2391700"); //alert(x+ "-" + url); var fdiv = '
'; //console.log(fdiv); //$(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); function fillElementWithAd($el, slotCode, size, targeting) if (typeof targeting === 'undefined') targeting = ; else if ( Object.prototype.toString.call( targeting ) !== '[object Object]' ) targeting = ; var elId = $el.attr('id'); //console.log("elId:" + elId); googletag.cmd.push(function() var slot = googletag.defineSlot(slotCode, size, elId); for (var t in targeting) slot.setTargeting(t, targeting slot.addService(googletag.pubads()); googletag.display(elId); //googletag.pubads().refresh([slot]); ); $(document).delegate("button[id^='mf']", "click", function() fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr"); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); );
function onPlayerStateChange(event) var ing, fid; //console.log(event + "---player"); $('iframe[id*="video-"]').each(function() _v = $(this).attr('id'); //console.log("_v: " + _v); if(_v != event) //console.log("condition match"); ing = new YT.get(_v); if(ing.getPlayerState()=='1') ing.pauseVideo(); ); $('div[id*="video-"]').each(function() _v = $(this).attr('id'); //console.log("_v: " + _v + " event: " + event); if(_v != event) //jwplayer(_v).play(false); ); function onYouTubePlay(vid, code, playDiv,vx, pvid) function onYouTubePlayer(vid, code, playDiv,vx, pvid) //console.log(playDiv + "Get Youtue " + vid); //$("#"+vid).find(".playvideo-"+ vx).hide(); var player = new YT.Player(playDiv , height: '450', width: '100%', videoId:code, playerVars: 'autoplay': 1, 'showinfo': 1, 'controls': 1 , events: 'onStateChange': function(event) onPlayerStateChange(event.target.a.id); ); $("#video-"+vid).show(); function kalturaPlayerAPIReady(code, playDiv,pvid) var dt=new Date; var nt=dt.getTime(); var vtitle = ""; pre_roll = "https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/11440465/Zeenews_English_Video/Zeenews_English_Preroll&tfcd=0&npa=0&sz=640x480&gdfp_req=1&output=vast&unviewed_position_start=1&env=vp&impl=s&description_url="+vtitle+"&correlator="+nt;
var sources =; var config = targetId: playDiv, provider: partnerId: 2504201 , playback: pictureInPicture : true, autoplay: true , advertising: adBreaks: [ position: 0, ads: [ url: [pre_roll] ] ] , plugins: ima: adsResponse: "" var kalturaPlayer = KalturaPlayer.setup(config); if(kalturaPlayer) kalturaPlayer.reset(); var videoUrl = code; var mediaid = '"zn' + pvid + '"'; sources = hls: [ id: mediaid, url: videoUrl, mimetype: "application/x-mpegURL" ] kalturaplayerSetup(kalturaPlayer, sources); if (typeof kalturaPlayer !== 'undefined') doRegisterEvents(kalturaPlayer); function kalturaplayerSetup(kalturaPlayer, playbackType) kalturaPlayer.setMedia( plugins: , sources: playbackType );
function doRegisterEvents(kalturaPlayer) /* player event*/ kalturaPlayer.addEventListener(kalturaPlayer.Event.Core.PLAY, playEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.Core.PAUSE, pauseEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.Core.PLAYBACK_ENDED, playbackEndedEvent);
/* ad event */ kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_STARTED, adStartedEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_COMPLETED, adCompletedEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_SKIPPED, adSkippedEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_CLICKED,adClicked); var vlabel = "https://zeenews.india.com"+$(this).attr("video-path"); var isVideoPlayed = false; var isAdSkippedCompleted = false;
function adStartedEvent(event) var videotype = "zee english video"; gtag('event', 'Adstarted', 'event_category': videotype, 'event_label': vlabel); gtag('event', 'Play', 'event_category': videotype, 'event_label': vlabel); isVideoPlayed = true; isAdSkippedCompleted = true;
function adCompletedEvent(event) var videotype = "zee english video"; gtag('event', 'Adcompleted', 'event_category': videotype, 'event_label': vlabel); isAdSkippedCompleted = true;
function adSkippedEvent(event) var videotype = "zee english video"; gtag('event', 'Adskipped', 'event_category': videotype, 'event_label': vlabel); isAdSkippedCompleted = true;
function adClicked(event) var videotype = "zee english video"; gtag('event', 'Adclicked', 'event_category': videotype, 'event_label': vlabel);
function playbackEndedEvent(event) var videotype = "zee english video"; gtag('event', 'Complete', 'event_category': videotype, 'event_label': vlabel);
function playEvent(event) var videotype = "zee english video";
if((isVideoPlayed) && (isAdSkippedCompleted)) isAdSkippedCompleted = false; else if((isVideoPlayed)) gtag('event', 'resume', 'event_category': videotype, 'event_label': vlabel); else gtag('event', 'Play', 'event_category': videotype, 'event_label': vlabel); isVideoPlayed = true;
function pauseEvent(event) var videotype = "zee english video"; gtag('event', 'Pause', 'event_category': videotype, 'event_label': vlabel);
function AdloadEvent(event) var videotype = "zee english video"; gtag("event", "kaltura_adloaded", "event_category": videotype, "event_label": vlabel);
function AdProgressEvent(event) var videotype = "zee english video"; gtag("event", "kaltura_adprogress", "event_category": videotype, "event_label": vlabel);
function adPausedEvent(event) var videotype = "zee english video"; gtag("event", "kaltura_adpaused", "event_category": videotype, "event_label": vlabel); /* End of Kaltura player function code */
$(document).delegate("div[id^='play']", "click", function() //console.log($(this).attr("id")); //console.log($(this).attr("video-source")); //console.log($(this).attr("video-code")); var isyoutube = $(this).attr("video-source"); var vurl = $(this).attr("video-path"); var vid = $(this).attr("id"); $(this).hide(); var pvid = $(this).attr("newsid"); var vx = $(this).attr("id").replace('play-',''); var vC = $(this).attr("video-code"); var playDiv = "video-" + vid + "-" + pvid; if(isyoutube =='No') kalturaPlayerAPIReady(vC, playDiv,pvid); else onYouTubePlay(vid, vC, playDiv,vx, pvid); ); $(document).delegate("div[id^='ptop']", "click", function() var vid = $(this).attr("id").replace('ptop',''); $(this).hide(); var pvid = $(this).attr("newsid"); var vurl = $(this).attr("video-path"); //console.log($(this).attr("id") + "--" + vid); //console.log($(this).parent().children().find('#play-'+vid).attr("video-source")); //console.log($(this).parent().children().find('#play-'+vid).attr("video-code")); var isyoutube = $(this).parent().children().find('#play-'+vid).attr("video-source"); var vC = $(this).parent().children().find('#play-'+vid).attr("video-code"); var playDiv = "mvideo-play-" + vid + "-" + pvid; if(isyoutube =='No') //console.log(jwplayer($(this).attr("id")).getState()); kalturaPlayerAPIReady(vC, playDiv,pvid);
else onYouTubePlay($(this).attr("id"), vC, playDiv, vid, pvid); );
var nxti = 3; var ci = 1; var nxti_1 = 6; var nxti_2 = 9; var nxti_3 = 12; if($.autopager==false) var use_ajax = false; /*var disqus_shortname="zeehindi"; var disqus_identifier; //made of post id and guid var disqus_url; //post permalink
function loadDisqus(source, identifier, url, nid)
if (window.DISQUS) //alert("if"); jQuery('
').insertAfter(source); jQuery('#disqus_thread').insertAfter(source); //append the HTML after the link //if Disqus exists, call it's reset method with new parameters DISQUS.reset( reload: true, config: function () this.page.identifier = identifier; this.page.url = url; ); else jQuery('
').insertAfter(source); disqus_identifier = identifier; //set the identifier argument disqus_url = url; //set the permalink argument
//append the Disqus embed script to HTML var dsq = document.createElement('script'); dsq.type="text/javascript"; dsq.async = true; dsq.src="http://" + disqus_shortname + '.disqus.com/embed.js'; jQuery('head').append(dsq); ;*/ /*$('.disqusOn').live( "click", notify ); function notify() identifier = $(this).attr('id'); dUrl = $(this).attr('disqus-url'); source = $(this).parent(); loadDisqus(jQuery(this), identifier, dUrl); */ function loadshare(curl) history.replaceState('' ,'', curl); if(window.OBR) window.OBR.extern.researchWidget(); //console.log("loadshare Call->" + curl); //$('html head').find('title').text("main" + nxtTitle); if(_up == false) var cu_url = curl; gtag('config', 'UA-2069755-1', 'page_path': cu_url );
if(window.COMSCORE) window.COMSCORE.beacon(c1: "2", c2: "9254297"); var e = Date.now(); $.ajax( url: "/marathi/news/zscorecard.json?" + e, success: function(e) ) //console.log('ga:'+r); /*(function () var ga = document.createElement('script'); ga.type="text/javascript"; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); )();*/ //console.log("loadshare Call"); if(use_ajax==false) //console.log('getting'); var view_selector="div.center-section"; // + settings.view_name; + '.view-display-id-' + settings.display; var content_selector = view_selector; // + settings.content_selector; var items_selector = content_selector + ' > div.rep-block'; // + settings.items_selector; var pager_selector="div.next-story-block > div.view-zn-article-mc-all-2017 > div.view-content > div.clearfix"; // + settings.pager_selector; var next_selector="div.next-story-block > div.view-zn-article-mc-all-2017 > div.view-content > div.clearfix > a:last"; // + settings.next_selector; var auto_selector="div.tag-block"; var img_location = view_selector + ' > div.rep-block:last'; var img_path="
Loading
"; //settings.img_path; //var img = '
' + img_path + '
'; var img = img_path; //$(pager_selector).hide(); //alert($(next_selector).attr('href')); var x = 0; var url=""; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager( appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function() $(img_location).after(img); circle = $('.center-section').find('#green-halo'); myTimer = $('.center-section').find('#myTimer'); angle = 0; Inverval = setInterval(function () $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) angle = 1; angle += angle_increment; .bind(this),interval); , load: function() $('div.loading-block').remove(); clearInterval(Inverval); //$('.repeat-block > .row > div.main-rhs2391700').find('div.rhs2391700:first').clone().appendTo('.repeat-block >.row > div.main-rhs' + x); $('div.rep-block > div.main-rhs2391700 > div:first').clone().appendTo('div.rep-block > div.main-rhs' + x); $('.center-section >.row:last').before('
Next Story
'); //$(".main-rhs" + x).theiaStickySidebar(); var fb_script=document.createElement('script'); fb_script.text= "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr"+ x); //alert(x+ "-" + url); var fdiv = '
'; //$(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('.center-section').children().find("#ad-"+ x); xp = "#star"+x;
//var $dfpAdrhs = $('.main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); //$('.content-area > .main-article > .row > .main-rhs'+x).find('#ad-300-' + x); //var $dfpAdrhs2 = $('.main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x);//$('.content-area > .main-article > .row > .main-rhs'+x).find('#ad-300-2-' + x); //var $dfpMiddleAd = $('.content-area > .main-article > .row').find('#ar'+x).find('#ad-middle-' + x).empty(); //fillElementWithAd($dfpAdrhs, '/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_300x250', [[300, 250], [300, 600]], ); //fillElementWithAd($dfpAdrhs2, '/11440465/Zeenews_English_Web/Zeenews_English_AS_BTF_1_300x250', [300, 250], ); //fillElementWithAd($dfpMiddleAd, '/11440465/Zeenews_Hindi_Article_Middle_300x250_BTF', [300, 250], ); var instagram_script=document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js";
/*var outbrain_script=document.createElement('script'); outbrain_script.type="text/javascript"; outbrain_script.async="async"; outbrain_script.src="https://widgets.outbrain.com/outbrain.js"; var Omain = $("#outbrain-"+ x); //alert(Omain + "--" + $(Omain).length);
$(Omain).after(outbrain_script); var rhs = $('.main-article > .row > div.article-right-part > div.rhs2391700:first').clone(); $(rhs).find('.ad-one').attr("id", "ad-300-" + x).empty(); $(rhs).find('.ad-two').attr("id", "ad-300-2-" + x).empty(); //$('.main-article > .row > div.article-right-part > div.rhs2391700:first').clone().appendTo('.main-article > .row > div.main-rhs' + x); $(rhs).appendTo('.main-article > .row > div.main-rhs' + x); */
setTimeout(function()
var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if(twit==0)twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); if(twit>0) if (typeof (twttr) != 'undefined') twttr.widgets.load();
else $.getScript('https://platform.twitter.com/widgets.js'); //$(twit).addClass('tfmargin'); if(insta>0) $('.content > .left-block:last').after(instagram_script); //$(insta).addClass('tfmargin'); window.instgrm.Embeds.process(); , 1500); ); /*$("#loadmore").click(function() x=$(next_selector).attr('id'); var url = $(next_selector).attr('href'); disqus_identifier="ZNH" + x; disqus_url = url; handle.autopager('load'); history.pushState('' ,'', url); setTimeout(function() //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); , 6000); );*/
/*$("button[id^='mf']").live("click", disqusToggle); function disqusToggle() console.log("Main id: " + $(this).attr('id')); */ $(document).delegate("button[id^='mf']", "click", function() fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr");
//console.log("Main id: " + $(this).attr('id') + "Goodbye!jQuery 1.4.3+" + sr); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); //console.log(fbcontainer); //var commentsContainer = document.getElementById(fbcontainer); //commentsContainer.innerHTML = '';
); /************Player Code ***********/ var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; //console.log("prevLoc" + prevLoc); $(window).scroll(function() var last = $(auto_selector).filter(':last'); var lastHeight = last.offset().top ; //st = $(layout).scrollTop(); //console.log("st:" + st); var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) _up = false; else _up = true; previousScroll = currentScroll; //console.log("_up" + _up);
var cutoff = $(window).scrollTop() + 64; //console.log(cutoff + "**"); $('div[id^="row"]').each(function() //console.log("article" + $(this).children().find('.left-block').attr("id") + $(this).children().find('.left-block').attr('data-url')); if($(this).offset().top + $(this).height() > cutoff) //console.log("$$" + $(this).children().find('.left-block').attr('data-url')); if(prevLoc != $(this).children().find('.left-block').attr('data-url')) prevLoc = $(this).children().find('.left-block').attr('data-url'); $('html head').find('title').text($(this).children().find('.left-block').attr('data-title')); $('meta[name=description]').attr("content",$(this).children().find('.left-block').attr('data-summary')); $('meta[name=keywords]').attr("content",$(this).children().find('.left-block').attr('data-keyword')); $('meta[name=news_keywords]').attr("content",$(this).children().find('.left-block').attr('data-keyword'));
pSUPERFLY.virtualPage(prevLoc,$(this).children().find('.left-block').attr('data-title')); //console.log("Summary: " + $(this).children().find('.left-block').attr('data-summary')); //console.log("Keyword: " + $(this).children().find('.left-block').attr('data-keyword')); //history.pushState('' ,'', prevLoc); loadshare(prevLoc); return false; // stops the iteration after the first one on screen ); if(lastHeight + last.height() < $(document).scrollTop() + $(window).height()) //console.log("**get"); url = $(next_selector).attr('href'); x=$(next_selector).attr('id'); //console.log("x:" + x); //handle.autopager('load'); /*setTimeout(function() //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); , 6000);*/ //lastoff = last.offset(); //console.log("**" + lastoff + "**"); ); //$( ".content-area" ).click(function(event) // console.log(event.target.nodeName); //); /*$( ".comment-button" ).live("click", disqusToggle); function disqusToggle() var id = $(this).attr("id"); $("#disqus_thread1" + id).toggle(); ;*/ //$(".main-rhs2391700").theiaStickySidebar(); var prev_content_height = $(content_selector).height(); //$(function() var layout = $(content_selector); var st = 0; ///); ); /* ;*/ )(jQuery); function on_load_google_ad(PWT) var inad1, inad2 = ''; googletag.cmd.push(function() googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_970x90', [[970, 90], [970, 250], [970, 66], [728, 90]], 'div-gpt-ad-1504525832454-0').addService(googletag.pubads()); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_300x250', [[300, 600], [300, 250]], 'div-article-rhs-atf-ad').addService(googletag.pubads()); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_BTF_1_300x250', [300, 250], 'div-gpt-ad-1504525832454-2').addService(googletag.pubads()); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_OOP_1x1', [1, 1], 'div-gpt-ad-1504526235866-6').addService(googletag.pubads()); var inarticle1 = document.getElementById('div-gpt-ad-AS-Inarticle-1'); if (typeof(inarticle1) != 'undefined' && inarticle1 != null) googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_1_300x250', [[300, 250]], 'div-gpt-ad-AS-Inarticle-1').addService(googletag.pubads()); inad1 = "true"; var inarticle2 = document.getElementById('div-gpt-ad-AS-Inarticle-2'); if (typeof(inarticle2) != 'undefined' && inarticle2 != null) googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_2_300x250', [[300, 250]], 'div-gpt-ad-AS-Inarticle-2').addService(googletag.pubads()); inad2 = "true";
googletag.pubads().setTargeting('category', ["article","Technology","Apple IPhone 13","Iphone 13 Launch","IPhone 13 Features","IPhone 13 Case"]); googletag.pubads().enableLazyLoad( fetchMarginPercent: 50, renderMarginPercent: 50, mobileScaling: 2.0 ); googletag.pubads().disableInitialLoad(); googletag.pubads().enableAsyncRendering(); googletag.pubads().set('page_url','https://zeenews.india.com/'); googletag.pubads().collapseEmptyDivs(); googletag.enableServices(); // OpenWrap code START here if(typeof PWT.requestBids === 'function') PWT.requestBids( PWT.generateConfForGPT(googletag.pubads().getSlots()), function(adUnitsArray) PWT.addKeyValuePairsToGPTSlots(adUnitsArray); PWT.ow_BidsReceived = true; initAdserver(false); ); // No need to handle "else" part as we have A9 wrapper on page // OpenWrap code END here var FAILSAFE_TIMEOUT = 1000; // this timeout should be more than OpenWrap and A9 timeout setTimeout(function() initAdserver(true); // calling this function with forced mode set to true so that GPT API is always executed , FAILSAFE_TIMEOUT); ); googletag.cmd.push(function() googletag.display('div-article-rhs-atf-ad'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504525832454-0'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504525832454-2'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504526235866-6'); ); if(inad1) googletag.cmd.push(function() googletag.display('div-gpt-ad-AS-Inarticle-1'); ); if(inad2) googletag.cmd.push(function() googletag.display('div-gpt-ad-AS-Inarticle-2'); );
on_load_google_ad(PWT);
function on_load_fb_twitter_widgets() (function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk'));
window.twttr = (function(d, s, id) (document, "script", "twitter-wjs"));
//setTimeout(function() on_load_google_ad(); , 5000); setTimeout(function() on_load_fb_twitter_widgets(); , 5000); . Source link
0 notes
dramabus2-blog · 6 years ago
Text
Fatty Fare a Fave for 'Otzi the Iceman'
By Robert Preidt
HealthDay Reporter
THURSDAY, July 12, 2018 (HealthDay News) -- Otzi the Iceman had a deep love for high-fat foods, say researchers who analyzed the ancient man's last meal.
The oldest naturally preserved ice mummy was discovered in the Eastern Italian Alps in 1991.
Researchers said their analysis of Otzi's stomach contents offer important clues about the eating habits of people in Europe going back more than 5,000 years, and also reveal clues about their food preparation.
Otzi's last meal showed a "remarkably high proportion of fat in his diet, supplemented with wild meat from ibex and red deer, cereals from einkorn, and with traces of toxic bracken [ferns]," said researcher Frank Maixner. He's with the Eurac Research Institute for Mummy Studies in Bolzano, Italy.
The study was published July 12 in the journal Current Biology.
The high-fat diet was unexpected, but "totally makes sense" due to the extreme environment in which Otzi lived, according to the researchers.
"The high and cold environment is particularly challenging for the human physiology and requires optimal nutrient supply to avoid rapid starvation and energy loss," Albert Zink, also from Eurac Research Institute, said in a journal news release.
"The Iceman seemed to have been fully aware that fat represents an excellent energy source," Zink added.
The wild meat consumed by Otzi was eaten fresh or perhaps dried. The presence of toxic bracken particles could be due to Otzi taking bracken as a way to treat intestinal problems caused by parasites, or by using the leaves to wrap food.
The researchers also discovered traces of Otzi's original digestive bacterial community and plan to try to reconstruct it.
WebMD News from HealthDay
Sources
SOURCE:Current Biology, news release, July 12, 2018
Tumblr media
Copyright © 2013-2018 HealthDay. All rights reserved.
'); else // If we match both our test Topic Ids and Buisness Ref we want to place the ad in the middle of page 1 if($.inArray(window.s_topic, moveAdTopicIds) > -1 && $.inArray(window.s_business_reference, moveAdBuisRef) > -1) // The logic below reads count all nodes in page 1. Exclude the footer,ol,ul and table elements. Use the varible // moveAdAfter to know which node to place the Ad container after. window.placeAd = function(pn) var nodeTags = ['p', 'h3','aside', 'ul'], nodes, target; nodes = $('.article-page:nth-child(' + pn + ')').find(nodeTags.join()).not('p:empty').not('footer *').not('ol *, ul *, table *'); //target = nodes.eq(Math.floor(nodes.length / 2)); target = nodes.eq(moveAdAfter); $('').insertAfter(target); // Currently passing in 1 to move the Ad in to page 1 window.placeAd(1); else // This is the default location on the bottom of page 1 $('.article-page:nth-child(1)').append(''); )(); $(function() // Create a new conatiner where we will make our lazy load Ad call if the reach the footer section of the article $('.main-container-3').prepend(''); );
Tumblr media
Source: https://www.webmd.com/diet/news/20180712/fatty-fare-a-fave-for-otzi-the-iceman?src=RSS_PUBLIC
0 notes
creatiview · 2 years ago
Text
[ad_1] Twitter CEO Elon Musk announced that the micro-blogging platform will now share ad revenue with creators who are subscribed to "Twitter Blue Verified" for advertisements that appear in their reply threads. In a tweet on Friday, Musk said: "Starting today, Twitter will share ad revenue with creators for ads that appear in their reply threads. To be eligible, the account must be a subscriber to Twitter Blue Verified." To be eligible, the account must be a subscriber to Twitter Blue Verified — Elon Musk (@elonmusk) February 3, 2023 Several users expressed their thoughts on Musk`s post. While one user asked, "what will the Twitter/Creator revenue split look like?", another commented, "how is this going to look logistically? An ad monetization dashboard for creators?" In December last year, Twitter had updated the list of features for its Blue service, which mentioned that subscribers of the service will get "prioritised rankings in conversations". The updated page also mentioned that subscribers can upload videos up to 60 minutes long from around the web at 1080p resolution and 2GB in file size, but also all videos must comply with the company`s rules. With IANS Inputs (function ($) Drupal.behaviors.pagerload = attach: function (context, settings) $(document).ready(function () var maindiv = false; var fbcontainer=""; var fbid = ''; var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr220594"); var fdiv = ''; var ci = 1; var pl = $(".star220594 > div.field-name-body > div.field-items > div.field-item").children('p').length; var adcount = 0; if (pl > 3) $(".star220594 > div.field-name-body > div.field-items > div.field-item").children('p').each(function (i, n) ci = parseInt(i) + 1; t = this; var htm = $(this).html(); d = $(""); if ((i + 1) % 3 == 0 && (i + 1) > 2 && $(this).html().length > 20 && ci < pl && adcount < 3) if (adcount == 2) $('').insertAfter(t); adcount++; else if (adcount >= 3) return false; ); $(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); var rightside = $('div#main-rhs220594 > div.main-contents:first').clone(); var outpg = $('body').children('.outpage'); $(".sidebar220594").theiaStickySidebar(); if ($.autopager) var use_ajax = true; function loadshare(curl) history.pushState('', '', curl); if (window.OBR) window.OBR.extern.researchWidget(); if (_up == false) var cu_url = curl; ga('set', 'page', curl); ga('send', 'pageview'); if (use_ajax == false) var view_selector="div#maincontent"; var content_selector = view_selector; var items_selector = content_selector + ' > div.repeat-block'; var pager_selector="div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz"; var next_selector="div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz > a:last"; var auto_selector="div.view-zbiz-article-prev-next"; var img_location = view_selector + ' > div.repeat-block:last'; var img_path=""; var img = ''; var x = 0;
var url=""; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager( appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function () $(img_location).after(img); , load: function () $('#views_infinite_scroll-ajax-loader').remove(); $('div#main-rhs' + x).empty(); //console.log($('div#main-rhs220594 > div.sidebar220594 > div:first').text()); $('#maincontent >.row:last').before('NEXT STORY'); $(rightside).clone().appendTo('div#main-rhs' + x); $(".sidebar" + x).theiaStickySidebar(); var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr" + x); var fdiv = ''; $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('#maincontent').children().find("#ad-" + x); var $dfpAdMob = $('#maincontent').children().find("#ad-mob-" + x); var $dfpAdrhs = $('#main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); var $dfpAdrhs2 = $('#main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x); $('body').children('.outpage').empty().append(' '); var $dfpAdOutofpage = $('body').children('div.opage'); var instagram_script = document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js"; setTimeout(function () var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if (twit == 0) twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); if (twit > 0) if (typeof (twttr) != 'undefined') twttr.widgets.load(); else $.getScript('//platform.twitter.com/widgets.js'); if (insta > 0) $('#maincontent >.row:last').after(instagram_script); window.instgrm.Embeds.process(); , 1500); ); $(document).delegate("button[id^='mf']", "click", function () fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr"); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); ); var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; $(window).scroll(function () var last = $(auto_selector).filter(':la
st'); var lastHeight = last.offset().top; var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) _up = false; else _up = true; previousScroll = currentScroll; var cutoff = $(window).scrollTop() + 64; $('div[id^="row"]').each(function () if ($(this).offset().top + $(this).height() > cutoff) if (prevLoc != $(this).children().find('.article-box').attr('data-url')) prevLoc = $(this).children().find('.article-box').attr('data-url'); $('html head').find('title').text($(this).children().find('.article-box').attr('data-title')); loadshare(prevLoc); return false; // stops the iteration after the first one on screen ); if (lastHeight + last.height() < $(document).scrollTop() + $(window).height()) url = $(next_selector).attr('href'); x = $(next_selector).attr('id'); ); ); ; )(jQuery); [ad_2] Source link
0 notes
classyfoxdestiny · 4 years ago
Text
ژیومی 10 اگست کو ایم آئی پیڈ 5 سیریز اور ایم آئی مکس 4 لانچ کرے گی: خصوصیات ، رنگ اور بہت کچھ چیک کریں۔ ٹیکنالوجی نیوز۔
ژیومی 10 اگست کو ایم آئی پیڈ 5 سیریز اور ایم آئی مکس 4 لانچ کرے گی: خصوصیات ، رنگ اور بہت کچھ چیک کریں۔ ٹیکنالوجی نیوز۔
ژیومی ایم آئی پیڈ 5۔
ایم آئی مکس 4 6.67 انچ FHD+ OLED ڈسپلے ، کوالکوم اسنیپ ڈریگن 888 پلس چپ سیٹ ، 5000mAh بیٹری 120W ریپڈ چارجنگ اور 70W یا 80W فاسٹ وائرلیس چارجنگ سپورٹ ، LPDDR5 رام ، اور UFS 3.1 اسٹوریج سے لیس ہوگا۔
(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk')); (function ($) /*Drupal.behaviors.pagerload = attach: function (context, settings) */ $(document).ready(function() $(".sidebar").theiaStickySidebar(); /*$.get( "/hindi/zmapp/mobileapi/sections.php?sectionid=17,18,19,23,21,22,25,20", function( data ) $( "#sub-menu" ).html( data ); alert( "Load was performed." ); );*/ var nextpath=""; var pg = 1; var nextload= true; var string = '';var ice = 0; var playerFly; var load = '
Loading
'; var cat = "?cat=120581"; //$(".main-rhs2382870").theiaStickySidebar(); var instagram_script=document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js"; document.head.appendChild(instagram_script); /*************************************/ /*$(window).scroll(function() var last = $('div.listing').filter('div:last'); var lastHeight = last.offset().top ; if(lastHeight + last.height() < $(document).scrollTop() + $(window).height() && nextload==true) var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; $.ajax( url: "/micros/article-list.php" + cat + nextpath, async: true, dataType: "json", beforeSend: function() $('div.listing').append(load); nextload=false; //console.log("/micros/article-list.php" + cat + nextpath); ice = 1; circle = $('.center-section').find('#green-halo'); myTimer = $('.center-section').find('#myTimer'); angle = 0; Inverval = setInterval(function () $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) angle = 1; angle += angle_increment; .bind(this),interval); , success: function(data) nextload=false; //console.log("success"); //console.log(data); $.each(data['rows'], function(key,val) //console.log("data found"); ice = 2; if(val['id']!='2382870') string = '
'+val["tag"]+'
' + val["title"] + '
' + val["summary"] + '
Read Full Article
'; $('div.listing').append(string); ); , error:function(xhr) //console.log("Error"); //console.log("An error occured: " + xhr.status + " " + xhr.statusText); nextload=false; , complete: function() $('div.listing').find(".loading-block").remove();; pg +=1; //console.log("mod" + ice%2); nextpath="&page=" + pg; //console.log("request complete" + nextpath); cat = "?cat=120581"; //console.log(nextpath); nextload=(ice%2==0)?true:false; );
//lastoff = last.offset(); //console.log("**" + lastoff + "**"); );*/ var maindiv = false; var dis = 0; var fbcontainer=""; var fbid = ''; var fb_script=document.createElement('script'); fb_script.text= "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr2382870"); //alert(x+ "-" + url); var fdiv = '
'; //console.log(fdiv); //$(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); function fillElementWithAd($el, slotCode, size, targeting) if (typeof targeting === 'undefined') targeting = ; else if ( Object.prototype.toString.call( targeting ) !== '[object Object]' ) targeting = ; var elId = $el.attr('id'); //console.log("elId:" + elId); googletag.cmd.push(function() var slot = googletag.defineSlot(slotCode, size, elId); for (var t in targeting) slot.setTargeting(t, targeting slot.addService(googletag.pubads()); googletag.display(elId); //googletag.pubads().refresh([slot]); ); $(document).delegate("button[id^='mf']", "click", function() fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr"); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); );
function onPlayerStateChange(event) var ing, fid; //console.log(event + "---player"); $('iframe[id*="video-"]').each(function() _v = $(this).attr('id'); //console.log("_v: " + _v); if(_v != event) //console.log("condition match"); ing = new YT.get(_v); if(ing.getPlayerState()=='1') ing.pauseVideo(); ); $('div[id*="video-"]').each(function() _v = $(this).attr('id'); //console.log("_v: " + _v + " event: " + event); if(_v != event) //jwplayer(_v).play(false); ); function onYouTubePlay(vid, code, playDiv,vx, pvid) function onYouTubePlayer(vid, code, playDiv,vx, pvid) //console.log(playDiv + "Get Youtue " + vid); //$("#"+vid).find(".playvideo-"+ vx).hide(); var player = new YT.Player(playDiv , height: '450', width: '100%', videoId:code, playerVars: 'autoplay': 1, 'showinfo': 1, 'controls': 1 , events: 'onStateChange': function(event) onPlayerStateChange(event.target.a.id); ); $("#video-"+vid).show(); function kalturaPlayerAPIReady(code, playDiv,pvid) var dt=new Date; var nt=dt.getTime(); var vtitle = ""; pre_roll = "https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/11440465/Zeenews_English_Video/Zeenews_English_Preroll&tfcd=0&npa=0&sz=640x480&gdfp_req=1&output=vast&unviewed_position_start=1&env=vp&impl=s&description_url="+vtitle+"&correlator="+nt;
var sources =; var config = targetId: playDiv, provider: partnerId: 2504201 , playback: pictureInPicture : true, autoplay: true , advertising: adBreaks: [ position: 0, ads: [ url: [pre_roll] ] ] , plugins: ima: adsResponse: "" var kalturaPlayer = KalturaPlayer.setup(config); if(kalturaPlayer) kalturaPlayer.reset(); var videoUrl = code; var mediaid = '"zn' + pvid + '"'; sources = hls: [ id: mediaid, url: videoUrl, mimetype: "application/x-mpegURL" ] kalturaplayerSetup(kalturaPlayer, sources); if (typeof kalturaPlayer !== 'undefined') doRegisterEvents(kalturaPlayer); function kalturaplayerSetup(kalturaPlayer, playbackType) kalturaPlayer.setMedia( plugins: , sources: playbackType );
function doRegisterEvents(kalturaPlayer) /* player event*/ kalturaPlayer.addEventListener(kalturaPlayer.Event.Core.PLAY, playEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.Core.PAUSE, pauseEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.Core.PLAYBACK_ENDED, playbackEndedEvent);
/* ad event */ kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_STARTED, adStartedEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_COMPLETED, adCompletedEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_SKIPPED, adSkippedEvent); kalturaPlayer.addEventListener(kalturaPlayer.Event.AD_CLICKED,adClicked); var vlabel = "https://zeenews.india.com"+$(this).attr("video-path"); var isVideoPlayed = false; var isAdSkippedCompleted = false;
function adStartedEvent(event) var videotype = "zee english video"; gtag('event', 'Adstarted', 'event_category': videotype, 'event_label': vlabel); gtag('event', 'Play', 'event_category': videotype, 'event_label': vlabel); isVideoPlayed = true; isAdSkippedCompleted = true;
function adCompletedEvent(event) var videotype = "zee english video"; gtag('event', 'Adcompleted', 'event_category': videotype, 'event_label': vlabel); isAdSkippedCompleted = true;
function adSkippedEvent(event) var videotype = "zee english video"; gtag('event', 'Adskipped', 'event_category': videotype, 'event_label': vlabel); isAdSkippedCompleted = true;
function adClicked(event) var videotype = "zee english video"; gtag('event', 'Adclicked', 'event_category': videotype, 'event_label': vlabel);
function playbackEndedEvent(event) var videotype = "zee english video"; gtag('event', 'Complete', 'event_category': videotype, 'event_label': vlabel);
function playEvent(event) var videotype = "zee english video";
if((isVideoPlayed) && (isAdSkippedCompleted)) isAdSkippedCompleted = false; else if((isVideoPlayed)) gtag('event', 'resume', 'event_category': videotype, 'event_label': vlabel); else gtag('event', 'Play', 'event_category': videotype, 'event_label': vlabel); isVideoPlayed = true;
function pauseEvent(event) var videotype = "zee english video"; gtag('event', 'Pause', 'event_category': videotype, 'event_label': vlabel);
function AdloadEvent(event) var videotype = "zee english video"; gtag("event", "kaltura_adloaded", "event_category": videotype, "event_label": vlabel);
function AdProgressEvent(event) var videotype = "zee english video"; gtag("event", "kaltura_adprogress", "event_category": videotype, "event_label": vlabel);
function adPausedEvent(event) var videotype = "zee english video"; gtag("event", "kaltura_adpaused", "event_category": videotype, "event_label": vlabel); /* End of Kaltura player function code */
$(document).delegate("div[id^='play']", "click", function() //console.log($(this).attr("id")); //console.log($(this).attr("video-source")); //console.log($(this).attr("video-code")); var isyoutube = $(this).attr("video-source"); var vurl = $(this).attr("video-path"); var vid = $(this).attr("id"); $(this).hide(); var pvid = $(this).attr("newsid"); var vx = $(this).attr("id").replace('play-',''); var vC = $(this).attr("video-code"); var playDiv = "video-" + vid + "-" + pvid; if(isyoutube =='No') kalturaPlayerAPIReady(vC, playDiv,pvid); else onYouTubePlay(vid, vC, playDiv,vx, pvid); ); $(document).delegate("div[id^='ptop']", "click", function() var vid = $(this).attr("id").replace('ptop',''); $(this).hide(); var pvid = $(this).attr("newsid"); var vurl = $(this).attr("video-path"); //console.log($(this).attr("id") + "--" + vid); //console.log($(this).parent().children().find('#play-'+vid).attr("video-source")); //console.log($(this).parent().children().find('#play-'+vid).attr("video-code")); var isyoutube = $(this).parent().children().find('#play-'+vid).attr("video-source"); var vC = $(this).parent().children().find('#play-'+vid).attr("video-code"); var playDiv = "mvideo-play-" + vid + "-" + pvid; if(isyoutube =='No') //console.log(jwplayer($(this).attr("id")).getState()); kalturaPlayerAPIReady(vC, playDiv,pvid);
else onYouTubePlay($(this).attr("id"), vC, playDiv, vid, pvid); );
var nxti = 3; var ci = 1; var nxti_1 = 6; var nxti_2 = 9; var nxti_3 = 12; if($.autopager==false) var use_ajax = false; /*var disqus_shortname="zeehindi"; var disqus_identifier; //made of post id and guid var disqus_url; //post permalink
function loadDisqus(source, identifier, url, nid)
if (window.DISQUS) //alert("if"); jQuery('
').insertAfter(source); jQuery('#disqus_thread').insertAfter(source); //append the HTML after the link //if Disqus exists, call it's reset method with new parameters DISQUS.reset( reload: true, config: function () this.page.identifier = identifier; this.page.url = url; ); else jQuery('
').insertAfter(source); disqus_identifier = identifier; //set the identifier argument disqus_url = url; //set the permalink argument
//append the Disqus embed script to HTML var dsq = document.createElement('script'); dsq.type="text/javascript"; dsq.async = true; dsq.src="http://" + disqus_shortname + '.disqus.com/embed.js'; jQuery('head').append(dsq); ;*/ /*$('.disqusOn').live( "click", notify ); function notify() identifier = $(this).attr('id'); dUrl = $(this).attr('disqus-url'); source = $(this).parent(); loadDisqus(jQuery(this), identifier, dUrl); */ function loadshare(curl) history.replaceState('' ,'', curl); if(window.OBR) window.OBR.extern.researchWidget(); //console.log("loadshare Call->" + curl); //$('html head').find('title').text("main" + nxtTitle); if(_up == false) var cu_url = curl; gtag('config', 'UA-2069755-1', 'page_path': cu_url );
if(window.COMSCORE) window.COMSCORE.beacon(c1: "2", c2: "9254297"); var e = Date.now(); $.ajax( url: "/marathi/news/zscorecard.json?" + e, success: function(e) ) //console.log('ga:'+r); /*(function () var ga = document.createElement('script'); ga.type="text/javascript"; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); )();*/ //console.log("loadshare Call"); if(use_ajax==false) //console.log('getting'); var view_selector="div.center-section"; // + settings.view_name; + '.view-display-id-' + settings.display; var content_selector = view_selector; // + settings.content_selector; var items_selector = content_selector + ' > div.rep-block'; // + settings.items_selector; var pager_selector="div.next-story-block > div.view-zn-article-mc-all-2017 > div.view-content > div.clearfix"; // + settings.pager_selector; var next_selector="div.next-story-block > div.view-zn-article-mc-all-2017 > div.view-content > div.clearfix > a:last"; // + settings.next_selector; var auto_selector="div.tag-block"; var img_location = view_selector + ' > div.rep-block:last'; var img_path="
Loading
"; //settings.img_path; //var img = '
' + img_path + '
'; var img = img_path; //$(pager_selector).hide(); //alert($(next_selector).attr('href')); var x = 0; var url=""; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager( appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function() $(img_location).after(img); circle = $('.center-section').find('#green-halo'); myTimer = $('.center-section').find('#myTimer'); angle = 0; Inverval = setInterval(function () $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) angle = 1; angle += angle_increment; .bind(this),interval); , load: function() $('div.loading-block').remove(); clearInterval(Inverval); //$('.repeat-block > .row > div.main-rhs2382870').find('div.rhs2382870:first').clone().appendTo('.repeat-block >.row > div.main-rhs' + x); $('div.rep-block > div.main-rhs2382870 > div:first').clone().appendTo('div.rep-block > div.main-rhs' + x); $('.center-section >.row:last').before('
Next Story
'); //$(".main-rhs" + x).theiaStickySidebar(); var fb_script=document.createElement('script'); fb_script.text= "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr"+ x); //alert(x+ "-" + url); var fdiv = '
'; //$(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('.center-section').children().find("#ad-"+ x); xp = "#star"+x;
//var $dfpAdrhs = $('.main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); //$('.content-area > .main-article > .row > .main-rhs'+x).find('#ad-300-' + x); //var $dfpAdrhs2 = $('.main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x);//$('.content-area > .main-article > .row > .main-rhs'+x).find('#ad-300-2-' + x); //var $dfpMiddleAd = $('.content-area > .main-article > .row').find('#ar'+x).find('#ad-middle-' + x).empty(); //fillElementWithAd($dfpAdrhs, '/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_300x250', [[300, 250], [300, 600]], ); //fillElementWithAd($dfpAdrhs2, '/11440465/Zeenews_English_Web/Zeenews_English_AS_BTF_1_300x250', [300, 250], ); //fillElementWithAd($dfpMiddleAd, '/11440465/Zeenews_Hindi_Article_Middle_300x250_BTF', [300, 250], ); var instagram_script=document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js";
/*var outbrain_script=document.createElement('script'); outbrain_script.type="text/javascript"; outbrain_script.async="async"; outbrain_script.src="https://widgets.outbrain.com/outbrain.js"; var Omain = $("#outbrain-"+ x); //alert(Omain + "--" + $(Omain).length);
$(Omain).after(outbrain_script); var rhs = $('.main-article > .row > div.article-right-part > div.rhs2382870:first').clone(); $(rhs).find('.ad-one').attr("id", "ad-300-" + x).empty(); $(rhs).find('.ad-two').attr("id", "ad-300-2-" + x).empty(); //$('.main-article > .row > div.article-right-part > div.rhs2382870:first').clone().appendTo('.main-article > .row > div.main-rhs' + x); $(rhs).appendTo('.main-article > .row > div.main-rhs' + x); */
setTimeout(function()
var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if(twit==0)twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); if(twit>0) if (typeof (twttr) != 'undefined') twttr.widgets.load();
else $.getScript('https://platform.twitter.com/widgets.js'); //$(twit).addClass('tfmargin'); if(insta>0) $('.content > .left-block:last').after(instagram_script); //$(insta).addClass('tfmargin'); window.instgrm.Embeds.process(); , 1500); ); /*$("#loadmore").click(function() x=$(next_selector).attr('id'); var url = $(next_selector).attr('href'); disqus_identifier="ZNH" + x; disqus_url = url; handle.autopager('load'); history.pushState('' ,'', url); setTimeout(function() //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); , 6000); );*/
/*$("button[id^='mf']").live("click", disqusToggle); function disqusToggle() console.log("Main id: " + $(this).attr('id')); */ $(document).delegate("button[id^='mf']", "click", function() fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr");
//console.log("Main id: " + $(this).attr('id') + "Goodbye!jQuery 1.4.3+" + sr); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); //console.log(fbcontainer); //var commentsContainer = document.getElementById(fbcontainer); //commentsContainer.innerHTML = '';
); /************Player Code ***********/ var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; //console.log("prevLoc" + prevLoc); $(window).scroll(function() var last = $(auto_selector).filter(':last'); var lastHeight = last.offset().top ; //st = $(layout).scrollTop(); //console.log("st:" + st); var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) _up = false; else _up = true; previousScroll = currentScroll; //console.log("_up" + _up);
var cutoff = $(window).scrollTop() + 64; //console.log(cutoff + "**"); $('div[id^="row"]').each(function() //console.log("article" + $(this).children().find('.left-block').attr("id") + $(this).children().find('.left-block').attr('data-url')); if($(this).offset().top + $(this).height() > cutoff) //console.log("$$" + $(this).children().find('.left-block').attr('data-url')); if(prevLoc != $(this).children().find('.left-block').attr('data-url')) prevLoc = $(this).children().find('.left-block').attr('data-url'); $('html head').find('title').text($(this).children().find('.left-block').attr('data-title')); $('meta[name=description]').attr("content",$(this).children().find('.left-block').attr('data-summary')); $('meta[name=keywords]').attr("content",$(this).children().find('.left-block').attr('data-keyword')); $('meta[name=news_keywords]').attr("content",$(this).children().find('.left-block').attr('data-keyword'));
pSUPERFLY.virtualPage(prevLoc,$(this).children().find('.left-block').attr('data-title')); //console.log("Summary: " + $(this).children().find('.left-block').attr('data-summary')); //console.log("Keyword: " + $(this).children().find('.left-block').attr('data-keyword')); //history.pushState('' ,'', prevLoc); loadshare(prevLoc); return false; // stops the iteration after the first one on screen ); if(lastHeight + last.height() < $(document).scrollTop() + $(window).height()) //console.log("**get"); url = $(next_selector).attr('href'); x=$(next_selector).attr('id'); //console.log("x:" + x); //handle.autopager('load'); /*setTimeout(function() //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); , 6000);*/ //lastoff = last.offset(); //console.log("**" + lastoff + "**"); ); //$( ".content-area" ).click(function(event) // console.log(event.target.nodeName); //); /*$( ".comment-button" ).live("click", disqusToggle); function disqusToggle() var id = $(this).attr("id"); $("#disqus_thread1" + id).toggle(); ;*/ //$(".main-rhs2382870").theiaStickySidebar(); var prev_content_height = $(content_selector).height(); //$(function() var layout = $(content_selector); var st = 0; ///); ); /* ;*/ )(jQuery); function on_load_google_ad(PWT) var inad1, inad2 = ''; googletag.cmd.push(function() googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_970x90', [[970, 90], [970, 250], [970, 66], [728, 90]], 'div-gpt-ad-1504525832454-0').addService(googletag.pubads()); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_300x250', [[300, 600], [300, 250]], 'div-article-rhs-atf-ad').addService(googletag.pubads()); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_BTF_1_300x250', [300, 250], 'div-gpt-ad-1504525832454-2').addService(googletag.pubads()); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_OOP_1x1', [1, 1], 'div-gpt-ad-1504526235866-6').addService(googletag.pubads()); var inarticle1 = document.getElementById('div-gpt-ad-AS-Inarticle-1'); if (typeof(inarticle1) != 'undefined' && inarticle1 != null) googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_1_300x250', [[300, 250]], 'div-gpt-ad-AS-Inarticle-1').addService(googletag.pubads()); inad1 = "true"; var inarticle2 = document.getElementById('div-gpt-ad-AS-Inarticle-2'); if (typeof(inarticle2) != 'undefined' && inarticle2 != null) googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_2_300x250', [[300, 250]], 'div-gpt-ad-AS-Inarticle-2').addService(googletag.pubads()); inad2 = "true";
googletag.pubads().setTargeting('category', ["article","Technology","Xiaomi Mi Pad 5","Mi Mix 4","Xiaomi Event","Xiaomi Mi Pad 5 Tablets"]); googletag.pubads().enableLazyLoad( fetchMarginPercent: 50, renderMarginPercent: 50, mobileScaling: 2.0 ); googletag.pubads().disableInitialLoad(); googletag.pubads().enableAsyncRendering(); googletag.pubads().set('page_url','https://zeenews.india.com/'); googletag.pubads().collapseEmptyDivs(); googletag.enableServices(); // OpenWrap code START here if(typeof PWT.requestBids === 'function') PWT.requestBids( PWT.generateConfForGPT(googletag.pubads().getSlots()), function(adUnitsArray) PWT.addKeyValuePairsToGPTSlots(adUnitsArray); PWT.ow_BidsReceived = true; initAdserver(false); ); // No need to handle "else" part as we have A9 wrapper on page // OpenWrap code END here var FAILSAFE_TIMEOUT = 1000; // this timeout should be more than OpenWrap and A9 timeout setTimeout(function() initAdserver(true); // calling this function with forced mode set to true so that GPT API is always executed , FAILSAFE_TIMEOUT); ); googletag.cmd.push(function() googletag.display('div-article-rhs-atf-ad'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504525832454-0'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504525832454-2'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504526235866-6'); ); if(inad1) googletag.cmd.push(function() googletag.display('div-gpt-ad-AS-Inarticle-1'); ); if(inad2) googletag.cmd.push(function() googletag.display('div-gpt-ad-AS-Inarticle-2'); );
on_load_google_ad(PWT);
function on_load_fb_twitter_widgets() (function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk'));
window.twttr = (function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr (document, "script", "twitter-wjs"));
//setTimeout(function() on_load_google_ad(); , 5000); setTimeout(function() on_load_fb_twitter_widgets(); , 5000); . Source link
0 notes
nexladder · 7 years ago
Link
Learn jQuery tutorial for beginners and professionals with examples of jQuery effects, selectors, traversing, events, manipulation, animation, html and more.
0 notes
cryptobully-blog · 7 years ago
Text
GTA 6 'Project Americas' Rumors Point To 2022 Launch Date, Set In Vice City
https://cryptobully.com/gta-6-project-americas-rumors-point-to-2022-launch-date-set-in-vice-city/
GTA 6 'Project Americas' Rumors Point To 2022 Launch Date, Set In Vice City
Tumblr media
GTA fans will be sad to read this latest rumor about the future of the franchise. According to sources claiming to know the plans at Rockstar, the next game in the franchise, widely expected to be called Grand Theft Auto 6, won’t launch for years to come. Specifically, the launch is tipped for 2022, four years into the future.
Tumblr media
Along with the tip on when the game might launch also comes rumor about where the game will be set. The game is said to be set again in the Rockstar version of south Florida called Vice City. The original Grand Theft Auto Vice City has been a favorite with gamers for the nearly perfect 1980’s atmosphere that it provided complete with great music and nods to classic TV shows like Miami Vice and movies like Scarface. While the game is said to be set in Vice City, the rumor does claim that players will fly to South America for some of the missions. 
Another interesting tidbit is that the game will be the first in the series to feature a female character as one of the leads. It’s unclear if the game will have fans switching characters as GTA5 did. The source of the leak claims that the game is known as Project Americas inside Rockstar. 
One thing that we don’t get any information on in this leak is what era the game might be set in. Whether the game returns to the ’80s or takes a more modern approach to the setting is unknown.
‘).insertAfter(jQuery(‘#initdisqus’)); } loadDisqus(jQuery(‘#initdisqus’), disqus_identifier, url);
} else setTimeout(function () disqusDefer(); , 50); }
disqusDefer();
function loadDisqus(source, identifier, url)
if (jQuery(“#disqus_thread”).length) jQuery(“#disqus_thread”).remove(); jQuery(”).insertAfter(source);
if (window.DISQUS)
DISQUS.reset( reload: true, config: function () this.page.identifier = identifier; this.page.url = url; );
else
//insert a wrapper in HTML after the relevant “show comments” link
disqus_identifier = identifier; //set the identifier argument disqus_url = url; //set the permalink argument
//append the Disqus embed script to HTML var dsq = document.createElement(‘script’); dsq.type = ‘text/javascript’; dsq.async = true; dsq.src = ‘https://’ + disqus_shortname + ‘.disqus.com/embed.js’; jQuery(‘head’).append(dsq);
jQuery(‘.show-disqus’).show(); source.hide(); ;
function disqusEvent() idleTime = 0;
Please enable JavaScript to view the comments powered by Disqus.
blog comments powered by
Technology
0 notes
i-happy2020 · 5 years ago
Text
New Post has been published on Сказка Каждому!
New Post has been published on https://myhappy2020.ru/?p=27539
#Сказка #Happy2020 #ДедМороз #Поздравления #Видеообращение
Ловля хищной рыбы на спиннинг и троллинг на Ахтубе
Удачная рыбалка с ребенком на Ахтубе: как мы ловили сомов, судаков и других хищников
Рыбалка в августе на рыболовной базе около Харабалей
Версия для печати
(2 оценок)
Елена Поляеваглавный редактор 7ya.ru
Содержание:
Дорога Москва – Харабали и размещение на базе
Рыбалка на сазана, карася и прочую мелкую рыбу
Рыбалка на сома
Рыбалка на спиннинг: судак, щука, окунь
Ловля хищных рыб троллингом
(function(w, n) []; w[n].push([ ownerId: 210179, containerId: 'adfox_150850412453531733', params: pp: 'g', ps: 'bjcw', p2: 'fkpt', puid1: '5', puid2: '', puid3: '', puid4: '0', puid5: '', puid6: '', puid7: '', puid8: '', puid9: '2' , ['tablet', 'phone'], tabletWidth: 768, phoneWidth: 320, isAutoReloads: true ]); )(window, 'adfoxAsyncParamsAdaptive');
Мой 11-летний сын Антон уже несколько лет серьезно увлекается рыбалкой. Мы стараемся поддерживать его увлечение – ездим с ним на подмосковные водоемы. В прошлом году на майские праздники мы ездили на рыбалку в Астрахань – наловили воблы. В этом году решили попытать счастья с другой рыбой и по совету приятеля еще зимой забронировали домик на рыболовной базе на реке Ахтуба неподалеку от городка Харабали. Ехать туда мы планировали в августе, когда поспевают арбузы и помидоры.
Дорога Москва – Харабали и размещение на базе
Дорога до Харабалей неблизкая – от Москвы 1400 км, если ехать через Воронеж. Если рулить по очереди, то можно добраться до места за сутки. Но у нас водитель один, поэтому мы ехали 2 дня с ночевкой в Волгограде. На второй день пересекли сначала Волгу, потом Ахтубу и примерно к обеду добрались до «Песчаного берега».
База оказалась довольно большой – сколько домиков, сказать не могу, но на парковке под навесом размещалось 15 автомобилей.
Заняв домик и побросав туда какие-то вещи, наскоро перекусив тем, что было с собой, мы отправились получать свою лодку. Лодка небольшая, мотор 10 л.с. – особо не разгонишься. Некоторые приезжают со своими резиновыми лодками и моторами, но у нас машина небольшая – много не увезет.
Рыболовная база расположена не на самой Ахтубе, а на ерике Ашулук. Ерик – это протока типа второго русла – Ашулук вытекает из Ахтубы и впадает в нее же ниже по течению.
(function(w, n) []; w[n].push([ ownerId: 210179, containerId: 'adfox_153441603053819802', params: pp: 'h', ps: 'bjcw', p2: 'fkpt', puid1: '5', puid2: '', puid3: '', puid4: '0', puid5: '', puid6: '', puid7: '', puid8: '', puid9: '2' , ['tablet', 'phone'], tabletWidth: 768, phoneWidth: 320, isAutoReloads: false ]); )(window, 'adfoxAsyncParamsAdaptive');
(function(w, n) []; w[n].push([ ownerId: 210179, containerId: 'adfox_153744440355965888', params: pp: 'h', ps: 'bjcw', p2: 'fkpt', puid1: '5', puid2: '', puid3: '', puid4: '0', puid5: '', puid6: '', puid7: '', puid8: '', puid9: '2' , ['desktop'], tabletWidth: 768, phoneWidth: 320, isAutoReloads: false ]); )(window, 'adfoxAsyncParamsAdaptive');
Рыбалка на сазана, карася и прочую мелкую рыбу
В наших планах было опробовать несколько видов рыбалки – начали с ловли белой рыбы. Для повышения квалификации нашего главного рыболова взяли ему на несколько дней егеря – чтобы не остался без улова и перенимал опыт. В 5 часов утра следующего дня Антон поехал на лодке егеря, а мы за ними следом.
Рыбачить поехали на Ахтубу – прошли по ерику около километра и вышли на большую воду. Ахтуба – широкая и полноводная, и рыбаков там очень много – лодки шныряют туда-сюда. Бросили якорь у противоположного берега, закинули донки на краю 6-метровой ямы.
Ловили на кукурузу, клевало не сказать, что очень активно. В основном попадались довольно крупные караси (я таких больших и не видела раньше!), подлещики, еще какие-то рыбешки. А главное – поймали несколько сазанов!
Порыбачили часа 3 и поехали на базу отдыхать. Уловом были более-менее довольны. Крупных рыб – сазанов и карасей выпотрошили и отправили в морозилку. Мелочь решили засолить в ведре. Т.к. на улице было довольно тепло – 25-30 градусов, ведро с соленой рыбой тоже поставили в холодильную комнату.
Неподалеку от базы находится озеро. Антон решил и там тоже попробовать порыбачить. Надо сказать, что за час-полтора он наловил еще почти полведра плотвы, красноперок, карасей и подлещиков. Мелкую отпускал, а покрупнее – брал на засолку. Еще и черепаха случайно попалась на крючок. К счастью, сама же и сорвалась.
Ближе к вечеру еще раз съездили с егерем на то же место и еще наловили сколько-то рыбы.
Рыбалка на сома
В наших планах был обязательный пункт – поймать сома! Узнали у егеря, что сомов здесь ловят на саранчу и договорились с ним, что он принесет наживку. В 5 утра мы были готовы к подвигам. Егерь принес две 5-литровых бутылки, в которых было проделано много дырочек – с саранчой и мы отправились ловить нашу главную цель.
Поехали вверх по Ахтубе довольно далеко, бросили якорь на краю 20-метровой ямы. Спининги у нас были крепкие, крючки большие, вместо лески – крепкая плетенка, грузила – граммов 100. Насадили на крючки по 3-4 саранчи, закинули удочки.
У нас клевало изредка и как-то странно – совсем чуть-чуть поклевывало. Ну вообще не похоже ��а крупную рыбу. Пока ждешь нормальной поклевки, наживка оказывается уже съеденной. В общем, у нас было все не очень, но мелкого сомика муж все же поймал. Отпустили его – пусть растет!
А Антону повезло – он поймал своего сома! Долго с ним боролся, вытягивал медленно, но победил. Егерь помог — поднял сачком.
Антон был очень доволен своим уловом – сом оказался на 3.5 кг. Очень неплохо! Мы его на базе отдали на копчение и потом 3 дня ели. Вкусный оказался!
В последний день нашей рыбалки мы решили еще раз съездить за сомами на ту же самую яму и снова егерь привез нам саранчи. В этот раз Антон с егерем вытащили трех сомов, еще пару сошло, оторвался поводок. Посмотрев наши снасти, егерь сказал, что поводки у нас слишком тонкие. Рассказал, что весной на этой яме поймал трехметрового сома, которого ему помогли вытащить другие рыбаки — тремя лодками только смогли его поднять.
Двух сомов мы отдали на копчение, а третьего решили заморозить – пожарим как-нибудь или шашлык сделаем на даче. Копчеными сомами мы потом родственников угощали – самый лучший деликатес оказался!
((__lxGc__=window.__lxGc__||'s':,'b':0)['s']['_218347']=__lxGc__['s']['_218347']||'b':)['b']['_662767']='i':__lxGc__.b++;
((__lxGc__=window.__lxGc__||'s':,'b':0)['s']['_218347']=__lxGc__['s']['_218347']||'b':)['b']['_662761']='i':__lxGc__.b++;
Рыбалка на спиннинг: судак, щука, окунь
Следующим видом рыбалки в наших планах была ловля судака на спиннинг. Лично мне со спиннингом почти никогда не везет, ничего не ловится. Но тут-то рыбы много, так что я очень надеялась хоть что-то поймать.
Снова в 5 часов утра встретились с егерем и поехали на Ахтубу. Бросили якорь посреди реки и стали ловить на воблеры. Попадались небольшие судачки и окуни, у мужа попался берш, он очень похож на судака, но без клыков. И мне наконец повезло – тоже поймала несколько судачков.
Но больше всех повезло Антону – ему еще и щучка попалась.
Судачки не слишком крупные – в среднем около килограмма, но мы ими были очень довольны.
Судаков мы потрошили, разделывали на филе и отправляли в заморозку. Окуней и судаков размером поменьше отдали на копчение. Каждую копченую рыбину завернули отдельно в фольгу и заморозили. По приезду в Москву это были самые популярные и вкусные сувениры с рыбалки для знакомых и родственников.
(function(w, n) []; w[n].push( ownerId: 210179, containerId: 'adfox_15480704160145380', params: pp: 'egg', ps: 'bjcw', p2: 'fkpt', insertAfter: 'undefined', insertPosition: '0', stick: true, stickTo: 'bottom-right', stickyColorScheme: 'light', puid1: '5', puid2: '', puid3: '', puid4: '0', puid5: '', puid6: '', puid7: '', puid8: '', puid9: '2' ); )(window, 'adfoxAsyncParams');
Ловля хищных рыб троллингом
Что такое троллинг я представляла только относительно морской рыбалки на крупную рыбу. Но, как мы выяснили после общения с соседями-рыбаками, здесь, на Ахтубе, троллинг весьма популярен. И мы решили опробовать троллинг. Оказалось – ничего сложного. Лодка идет на малой скорости, а рыбаки по ходу движения постепенно стравливают леску до 40-50 метров. Воблер нужен с хорошим заглублением, метров на 6, чтобы поднимать хищника со дна. В какой-то момент рыба клюет – это заметно по поведению верхушки спининга. Если вдруг зацеп – начинает сильно разматываться леска катушка. В этом случае надо остановить лодку, смотать второй спининг и вернуться к месту зацепа, иногда удается отцепить воблер или блесну, иногда приходится обрезать леску и ставить запасной воблер.
Этот вид рыбалки нам понравился больше всего, и мы троллили несколько дней. Для троллинга на лодке нужен эхолот, чтобы знать глубину. Ходили туда-сюда по Ашулуку — на мелких участках ерика сматывали удочки и проходили их быстро, в глубоких местах троллили.
Лучше всего на троллинг ловились мелкие годовалые щучки, их мы отпускали обратно – пусть растут! Вот таких как раз и отпускали.
Троллингом хорошо ловился окунь и судак. А один раз, на перекате с быстрым течением, поймали довольно крупного жереха – порядка 2 кг оказался. Это мне так повезло!
Так как жерех – довольно костлявая рыба, его мы отдали на копчение. Если окуней и судачков коптят горячим способом, то для жереха обычно используют холодное копчение – получается балык к пиву. Тоже вкусно!
За неделю пребывания на базе мы наморозили целый ящик рыбы – филе судака и щуки, потрошеных карасей и сазанов. Рыба, которую мы засолили в первый день, через 3 дня промыли (в течение 2 часов в садке на причале) и заморозили (по возвращению домой она была отправлена на дачу вялиться). Ну и копченой рыбы запасли коробку – она поехала домой тоже замороженной.
Хоть мы и не поймали трофейную рыбу, рыбалкой мы были очень довольны. Такого удачного клева у нас не было никогда, если не считать ловлю воблы в прошлом году. Но разве можно сравнить удовольствие от ловли воблы и крупного хищника? Поэтому мы решили, что через год мы сюда обязательно вернемся за трофейной рыбой!
Авторская статья
Заказать видеообращение Дед�� Мороза
ВКонтакте. Новогодняя сказка каждому
Источник
0 notes
brajeshupadhyay · 5 years ago
Text
India needs more global sized banks to help country achieve USD 5 tn economy: CEA
Chief Economic Adviser KV Subramanian on Sunday said that India needs more global sized banks to help the country achieve USD 5 trillion economy by 2024-25. He rued the fact that India has only one bank in top 100 global bank list while a country much smaller in size has more such banks.
State Bank of India (SBI) at the 55th position is the only bank in the global top 100 list. China has 18 banks while the US has 12 in the list.
“India is the fifth largest economy in the world. So, if the Indian banking sector was proportional to the size of its economy, India should have been where South Korea is, which has six banks in the global top hundred. But in contrast, India has only one bank in the global top hundred,” he said.
See Zee Business Live TV streaming below:
Even countries that are a fraction of India’s size for example Finland, Denmark, Belgium, Austria, Norway have at least one bank in the global top hundred, he said while delivering a lecture at the fifth anniversary event of Bandhan Bank.
“If you take countries like Sweden and Singapore, Sweden is one-sixth the size of the economy, Singapore is one-eighth the size of the economy, they have three banks in the global top hundred,” he said.
Subramanian said that “like cricketer M S Dhoni who had shown the country how to win in the foreign shores, the Indian banking system also needs to scale up to global standards”.
“The Indian banking system needs to conquer the world. Rather being tigers at home, it should scale up its presence in the world rankings where China is leading in terms of the number of banks, followed by the US,” he said.
That’s what should now be the goal of the Indian banking sector, because India is not any more a small economy but the fifth largest economy in the world, he said.
“So, the basic point I’m trying to make here is that now in order for India to become a USD 5 trillion economy, the banking sector needs to be proportional at least proportional to the size of its economy, if not bigger than the proportionality,” he said.
In addition to global sized banks, the chief economic adviser said India needs more banks. For instance, he said, the US which is one third of India in terms of population has 20 times more banks.
More banks will enhance competition in banking and bring down the cost for consumers, he said.
Laying emphasis on adoption of technology, he said, there is also a need to focus more on data analytics, artificial intelligence and machine learning as banking has become more technology driven.
Citing a study, Subramanian said technology can play a key role in both scale, and quality of lending.
By investing in data analytics and technology, it is possible to actually defeat the nefarious designs of wilful defaulters by using proper data, because there are enough leading indicators available, he added.
//<![CDATA[ (function ($) { Drupal.behaviors.pagerload = { attach: function (context, settings) { $(document).ready(function () { var maindiv = false; var fbcontainer = ''; var fbid = ''; var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) {var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src = "https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr133873"); var fdiv = '
'; var ci = 1; var pl = $(".star133873 > div.field-name-body > div.field-items > div.field-item").children('p').length; var adcount = 0; if (pl > 3) { $(".star133873 > div.field-name-body > div.field-items > div.field-item").children('p').each(function (i, n) { ci = parseInt(i) + 1; t = this; var htm = $(this).html(); d = $("
"); if ((i + 1) % 3 == 0 && (i + 1) > 2 && $(this).html().length > 20 && ci < pl && adcount < 3) { if (adcount == 2) { $('
').insertAfter(t); } adcount++; } else if (adcount >= 3) { return false; } }); } $(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); var rightside = $('div#main-rhs133873 > div.main-contents:first').clone(); var outpg = $('body').children('.outpage'); $(".sidebar133873").theiaStickySidebar(); if ($.autopager) { var use_ajax = true;
function loadshare(curl) { history.pushState('', '', curl); if (window.OBR) { window.OBR.extern.researchWidget(); } if (_up == false) { var cu_url = curl; ga('set', 'page', curl); ga('send', 'pageview'); } } if (use_ajax == false) { var view_selector = 'div#maincontent'; var content_selector = view_selector; var items_selector = content_selector + ' > div.repeat-block'; var pager_selector = 'div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz'; var next_selector = 'div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz > a:last'; var auto_selector = 'div.view-zbiz-article-prev-next'; var img_location = view_selector + ' > div.repeat-block:last'; var img_path = ''; var img = '
'; var x = 0; var url = ''; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager({ appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function () { $(img_location).after(img); }, load: function () { $('#views_infinite_scroll-ajax-loader').remove(); $('div#main-rhs' + x).empty(); //console.log($('div#main-rhs133873 > div.sidebar133873 > div:first').text()); $('#maincontent >.row:last').before('
NEXT STORY
'); $(rightside).clone().appendTo('div#main-rhs' + x); $(".sidebar" + x).theiaStickySidebar(); var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) {var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src = "https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr" + x); var fdiv = '
'; $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('#maincontent').children().find("#ad-" + x); var $dfpAdMob = $('#maincontent').children().find("#ad-mob-" + x); var $dfpAdrhs = $('#main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); var $dfpAdrhs2 = $('#main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x); $('body').children('.outpage').empty().append('
  '); var $dfpAdOutofpage = $('body').children('div.opage'); var instagram_script = document.createElement('script'); instagram_script.defer = 'defer'; instagram_script.async = 'async'; instagram_script.src = "https://platform.instagram.com/en_US/embeds.js"; setTimeout(function () { var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if (twit == 0) { twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); } if (twit > 0) { if (typeof (twttr) != 'undefined') { twttr.widgets.load();
} else { $.getScript('//platform.twitter.com/widgets.js'); } } if (insta > 0) { $('#maincontent >.row:last').after(instagram_script); window.instgrm.Embeds.process(); } }, 1500); } });
$(document).delegate("button[id^='mf']", "click", function () { fbcontainer = ''; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr");
$(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); });
var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; $(window).scroll(function () { var last = $(auto_selector).filter(':last'); var lastHeight = last.offset().top; var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) { _up = false; } else { _up = true; } previousScroll = currentScroll; var cutoff = $(window).scrollTop() + 64; $('div[id^="row"]').each(function () { if ($(this).offset().top + $(this).height() > cutoff) { if (prevLoc != $(this).children().find('.article-box').attr('data-url')) { prevLoc = $(this).children().find('.article-box').attr('data-url'); $('html head').find('title').text($(this).children().find('.article-box').attr('data-title')); loadshare(prevLoc); } return false; // stops the iteration after the first one on screen } }); if (lastHeight + last.height() < $(document).scrollTop() + $(window).height()) { url = $(next_selector).attr('href'); x = $(next_selector).attr('id'); } }); } } }); } }; })(jQuery); //]]>
The post India needs more global sized banks to help country achieve USD 5 tn economy: CEA appeared first on Shri Times News.
from WordPress https://ift.tt/3hp4VHk via Blogger https://ift.tt/3hrypUX
0 notes
creatiview · 2 years ago
Text
[ad_1] State-owned telco BSNL is expected to turn around, generating net profit in the fiscal year 2026-27, with the implementation of the approved revival measures, Parliament was informed on Friday. Losses of Bharat Sanchar Nigam Ltd (BSNL) were pegged at Rs 3,589 crore in April-September 2022-23 as it clocked an income of Rs 9,366 crore and incurred a total expenditure of Rs 12,956 crore, Minister of State for Communications Devusinh Chauhan said in a written reply in Rajya Sabha. In 2021-22, losses stood at Rs 6,982 crore, against income of Rs 19,052 crore and expenses of Rs 26,034 crore. "BSNL is expected to generate a net profit in the financial year 2026-27 with the implementation of the revival package," Chauhan said in reply to another question. The Cabinet had approved a revival package for both BSNL and MTNL in 2019. Further, the Union Cabinet on July 2022 cleared a Rs 1.64 lakh crore revival package for BSNL. The revival measures focus on infusing fresh capital for upgrading BSNL services, allocating spectrum, de-stressing its balance sheet, and augmenting its fibre network by merging Bharat Broadband Nigam Limited (BBNL) with BSNL. As part of the Cabinet approval, a capex of Rs 22,471 crore has been approved for BSNL as equity infusion over a period of four years from 2022-23 to 2025-26 through budgetary allocation. This will be utilized by BSNL for its capex requirement including 4G mobile services. "The revival packages approved by the Cabinet will strengthen BSNL in telecom services including in rural areas and will facilitate the mission of providing digital connectivity in rural areas and help the domestic manufacturing industry. Further, BSNL has planned procurement for 1 lakh sites to provide 4G services under the `Atmanirbhar Bharat' mission," Chauhan said.  With the implementation of the approved revival measures by the government, BSNL is expected to turn around with net profit in 2026-27, Chauhan informed the House.   Click Here For the Latest Updates On Stock Market | Zee Business Live   (function ($) Drupal.behaviors.pagerload = attach: function (context, settings) $(document).ready(function () var maindiv = false; var fbcontainer=""; var fbid = ''; var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr220565"); var fdiv = ''; var ci = 1; var pl = $(".star220565 > div.field-name-body > div.field-items > div.field-item").children('p').length; var adcount = 0; if (pl > 3) $(".star220565 > div.field-name-body > div.field-items > div.field-item").children('p').each(function (i, n) ci = parseInt(i) + 1; t = this; var htm = $(this).html(); d = $(""); if ((i + 1) % 3 == 0 && (i + 1) > 2 && $(this).html().length > 20 && ci < pl && adcount < 3) if (adcount == 2) $('').insertAfter(t); adcount++; else if (adcount >= 3) return false; ); $(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); var rightside = $('div#main-rhs220565 > div.main-contents:first').clone(); var outpg = $('body').children('.outpage'); $(".sidebar220565").theiaStickySidebar(); if ($.autopager) var use_ajax = true; function loadshare(curl) history.pushState('', '', curl); if (window.OBR) window.OBR.extern.researchWidget(); if (_up == false)
var cu_url = curl; ga('set', 'page', curl); ga('send', 'pageview'); if (use_ajax == false) var view_selector="div#maincontent"; var content_selector = view_selector; var items_selector = content_selector + ' > div.repeat-block'; var pager_selector="div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz"; var next_selector="div.view-zbiz-article-prev-next > div.view-content > div > div.next-article-blick-biz > a:last"; var auto_selector="div.view-zbiz-article-prev-next"; var img_location = view_selector + ' > div.repeat-block:last'; var img_path=""; var img = ''; var x = 0; var url=""; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager( appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function () $(img_location).after(img); , load: function () $('#views_infinite_scroll-ajax-loader').remove(); $('div#main-rhs' + x).empty(); //console.log($('div#main-rhs220565 > div.sidebar220565 > div:first').text()); $('#maincontent >.row:last').before('NEXT STORY'); $(rightside).clone().appendTo('div#main-rhs' + x); $(".sidebar" + x).theiaStickySidebar(); var fb_script = document.createElement('script'); fb_script.text = "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr" + x); var fdiv = ''; $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('#maincontent').children().find("#ad-" + x); var $dfpAdMob = $('#maincontent').children().find("#ad-mob-" + x); var $dfpAdrhs = $('#main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); var $dfpAdrhs2 = $('#main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x); $('body').children('.outpage').empty().append(' '); var $dfpAdOutofpage = $('body').children('div.opage'); var instagram_script = document.createElement('script'); instagram_script.defer="defer"; instagram_script.async="async"; instagram_script.src="https://platform.instagram.com/en_US/embeds.js"; setTimeout(function () var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if (twit == 0) twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); if (twit > 0) if (typeof (twttr) != 'undefined') twttr.widgets.load(); else $.getScript('//platform.twitter.com/widgets.js'); if (insta > 0) $('#maincontent >.row:last').after(instagram_scr
ipt); window.instgrm.Embeds.process(); , 1500); ); $(document).delegate("button[id^='mf']", "click", function () fbcontainer=""; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr"); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); ); var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; $(window).scroll(function () var last = $(auto_selector).filter(':last'); var lastHeight = last.offset().top; var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) _up = false; else _up = true; previousScroll = currentScroll; var cutoff = $(window).scrollTop() + 64; $('div[id^="row"]').each(function () if ($(this).offset().top + $(this).height() > cutoff) if (prevLoc != $(this).children().find('.article-box').attr('data-url')) prevLoc = $(this).children().find('.article-box').attr('data-url'); $('html head').find('title').text($(this).children().find('.article-box').attr('data-title')); loadshare(prevLoc); return false; // stops the iteration after the first one on screen ); if (lastHeight + last.height() < $(document).scrollTop() + $(window).height()) url = $(next_selector).attr('href'); x = $(next_selector).attr('id'); ); ); ; )(jQuery); [ad_2] Source link
0 notes
kabirbd · 5 years ago
Text
<script type="application/ld+json">{ "@context": "https://schema.org", "@type": "VideoObject", "mainEntityOfPage": "https://zeenews.india.com/bengali/live-tv", "name": "24 Ghanta Live Bengali News, Bangla Khobor, Live Bangla News Streaming", "description": "Watch 24 Ghanta live bangla khobor on Zee News Bengali. Stay updated on breaking bangla khobor online, Kolkata news, exclusive news updates only on Zee 24 Ghata.", "duration": "PT24H", "embedUrl": "https://zeenews.india.com/bengali/live-tv/embed", "thumbnailUrl": "https://bengali.cdn.zeenews.com/bengali/desktop/logo/placeholder_image_bengali.jpg", "uploadDate": "2020-07-20T00:00:00+05:30", "publisher": [{ "@type": "Organization", "name": "Zee ২৪ ঘণ্টা", "url": "https://zeenews.india.com/bengali", "logo": { "@type": "ImageObject", "url": "https://bengali.cdn.zeenews.com/bengali/images/amp_24_ghanta_publisher_logo.png", "width": 600, "height": 60 } }], "publication": { "@type": "BroadcastEvent", "isLiveBroadcast": true, "startDate": "2020-07-20T00:00:00+05:30", "endDate": "2020-07-20T23:59:00+05:30" } }</script><ul class="breadcrumb"><li><a href="https://zeenews.india.com/bengali"><span>খবর</span></a></li><li><a href="https://zeenews.india.com/bengali/live-tv"><span>Live TV</span></a></li></ul><script type="application/ld+json">{ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "খবর", "item": "https://zeenews.india.com/bengali" },{ "@type": "ListItem", "position": 2, "name": "Live TV", "item": "https://zeenews.india.com/bengali/live-tv" }]}</script> <div class="photo-header article-head-block margin-bt10px"> <h1 class="article-heading margin-bt10px ver-m livtv-head">Live TV</h1> <div class="photo-s ver-m"> <a href="https://www.facebook.com/sharer/sharer.php?u=https://zeenews.india.com/bengali/live-tv" title="Facebook" target="_blank" class="article-fb"><i class="fa fa-facebook" aria-hidden="true"></i></a> <a href="https://twitter.com/share?url=https://zeenews.india.com/bengali/live-tv&text=Live%20TV" target="_blank" title="Twitter" class="article-tw"><i class="fa fa-twitter" aria-hidden="true"></i></a> <a title="Linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=https://zeenews.india.com/bengali/live-tv" target="_blank" class="article-in"><i class="fa fa-linkedin" aria-hidden="true"></i></a> </div> </div> <div class="left-section"> <div id="live-tv" class="video-wrap" style="background-color:#000000;text-align:center;width:100%;margin-bottom:20px;"> <div class="vide"> <div> <i id="move" class="fa fa-arrows" aria-hidden="true" style="text-shadow: 2px 2px #000;position:absolute;top:5px;left:40px;background:transparent;border:1px solid #575757;color:#FFF;font-size:16px;outline:none;padding:4px 5px;cursor:move;"></i> <iframe src="https://zeenews.india.com/bengali/live-tv/embed" width="700px" height="525px" style="border:none;" allowfullscreen="" allow="autoplay; fullscreen" mozallowfullscreen="" webkitallowfullscreen="" scrolling="no"></iframe> <i id="can-vd" class="fa fa-close" aria-hidden="true" style="text-shadow: 2px 2px #000;"></i> </div> </div> </div> <style> @keyframes fade-in-up { 0%{opacity:0} 100%{transform:translateY(0);opacity:1} } .fa-expand::before{content:"f065"} .fa-arrows::before{content:"f047"} .vide{background: #000;text-align: center;width:100% !important;max-width:100%;} .vide iframe{max-width:100%;max-height:100%;} .vide.stuck{position:fixed;bottom:10px;right:10px;z-index:9999;} #can-vd{position:absolute;top:5px;left:5px;background: transparent;border:1px solid #575757;color:#FFF;font-size: 16px;outline:none;padding:4px 6px;display:none;} /*.stuck iframe {height: 124px; position: absolute; bottom: 0; right: 0;}*/ .videomove{bottom:10px;right:10px;position:absolute;width:320px;height:240px;background:#000;border:1px solid #FFF;transform:translateY(100%);animation:fade-in-up .25s ease forwards;z-index:9999;-webkit-box-shadow:0 0 12px -1px rgba(0,0,0,0.42);-moz-box-shadow:0 0 12px -1px rgba(0,0,0,0.42);box-shadow:0 0 12px -1px rgba(0,0,0,0.42);} #video-expand{position:absolute;top:5px;right:5px;background:transparent;border:1px solid #575757;color:#FFF;font-size:16px;outline:none;padding:3px 6px;display:none;} #move{display:none;} </style> <script src="https://english.cdn.zeenews.com/desktop/js/jquery-ui.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.2/jquery.ui.touch-punch.min.js"></script> <script> $(document).ready(function(){ var $window = $(window); var $videoWrap = $('.video-wrap'); var $video = $('.vide'); var previousScroll = 0; var videoHeight = $video.outerHeight(); var _up = false; var _close = false; $window.on('scroll', function() { var windowScrollTop = $window.scrollTop(); var videoBottom = videoHeight + $videoWrap.offset().top; previousScroll = windowScrollTop; if (windowScrollTop > videoBottom && _close==false) { $videoWrap.height(videoHeight); $video.addClass('stuck'); document.getElementById("can-vd").style.display = "block"; document.getElementById("move").style.display = "block"; if ($('.vide').hasClass('stuck')) { $('.vide div:first-child').addClass('videomove'); $('.videomove').draggable(); } else { $('.vide div:first-child').removeClass('videomove ui-draggable ui-draggable-handle'); } } else { $(".videomove").removeAttr("style"); $videoWrap.height('auto'); $video.removeClass('stuck'); document.getElementById("can-vd").style.display = "none"; document.getElementById("move").style.display = "none"; $('.vide div:first-child').removeClass('videomove ui-draggable ui-draggable-handle'); } }); $("#can-vd").on('touchstart click', function() { _close = true; $video.removeClass('stuck'); }); }); </script> <div class="content"> <div class="row zcontent"> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/sealdah-station-renovation-under-progress_327519.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_7.jpg?itok=FkbN9DrL" width="700" height="400" alt="Sealdah Station renovation under progress" title="Sealdah Station renovation under progress"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>নতুন রূপে সেজে উঠছে শিয়ালদহ রেল স্টেশন</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/tmc-inner-gang-wars-policemen-also-attacked_327518.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_6.jpg?itok=sPBOF-qK" width="700" height="400" alt="TMC inner gang wars, policemen also attacked" title="TMC inner gang wars, policemen also attacked"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>তৃণমূলের গোষ্ঠীকোন্দল, এলাকা দখলের লড়াই, আর সেই সংঘর্ষ আটকাতে গিয়ে গুরুতর জখম পুলিসকর্মীরা</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/superfast-stay-updated-on-every-news-in-a-ziffy_327517.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_5.jpg?itok=C80S9PgL" width="700" height="400" alt="SUPERFAST : STAY UPDATED ON EVERY NEWS IN A ZIFFY!" title="SUPERFAST : STAY UPDATED ON EVERY NEWS IN A ZIFFY!"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>SUPERFAST : দিনের সব খবরের আপডেট, দেখে নিন এক নজরে | STAY UPDATED IN A ZIFFY!</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/over-10-4-million-covid-positive-worldwide_327497.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_4.jpg?itok=YE5jU77-" width="700" height="400" alt="Over 10.4 Million Covid Positive worldwide" title="Over 10.4 Million Covid Positive worldwide"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>বিশ্বে এখনও পর্যন্ত কোভিড পজিটিভ ১ কোটি ৪৫ লক্ষ জন</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/markets-see-heavy-footfall-even-in-these-corona-days_327496.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_3.jpg?itok=X_ezrIer" width="700" height="400" alt="Markets see heavy footfall, even in these corona Days" title="Markets see heavy footfall, even in these corona Days"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>করোনার সময়েও বাজারে দেদার ভিড়, সামাল দিতে মাথায় হাত প্রশাসনের</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/rapid-increase-of-covid-positive-cases-in-india_327458.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_2.jpg?itok=smwl5njC" width="700" height="400" alt="Rapid increase of Covid positive cases in India" title="Rapid increase of Covid positive cases in India"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>ক্রমেই বাড়ছে করোনা আক্রান্তের সংখ্যা, পাল্লা দিয়ে বাড়ছে মৃত্যু</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/source-of-covid-positive-not-traced-at-many-places-possible-signs-of-community-spread_327430.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_1.jpg?itok=8DHL6I_S" width="700" height="400" alt="Source of Covid Positive not traced at many places, possible signs of Community spread?" title="Source of Covid Positive not traced at many places, possible signs of Community spread?"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>"আগেও বলছি, এখনও বলছি, সারা দেশে নানা জায়গায় অসংখ্য সংক্রমিতের উত্স-সূত্র পাওয়া যাচ্ছে না," আইএমএ-র সুরেই গোষ্ঠী সংক্রমণ শুরুর ইঙ্গিত জনস্বাস্থ্য বিশেষজ্ঞের</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/ima-says-community-transmision-might-have-initiated_327429.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003_0.jpg?itok=BKvhqT-q" width="700" height="400" alt="IMA says Community transmision might have initiated" title="IMA says Community transmision might have initiated"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>'দেশের বিভিন্ন অংশে গোষ্ঠী সংক্রমণের সম্ভাবনা প্রবল,' কেরলের মুখ্যমন্ত্রীর পর IMA-এর দাবিতে উদ্বেগ</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/community-transmission-started-in-india-see-what-experts-have-to-say_327410.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/19/00000003.jpg?itok=hijMPD_E" width="700" height="400" alt="COMMUNITY TRANSMISSION STARTED IN INDIA? see what experts have to say" title="COMMUNITY TRANSMISSION STARTED IN INDIA? see what experts have to say"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>COMMUNITY TRANSMISSION IN INDIA শুরু হয়েছে, ইঙ্গিত KERALA ও IMA-এর, দেখুন কী জানাচ্ছেন চিকিত্সকরা</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/chotpot-the-most-important-news-updates-of-the-day_327301.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_23.jpg?itok=ZZc4ZA_O" width="700" height="400" alt="Chotpot : The Most Important news updates of the day" title="Chotpot : The Most Important news updates of the day"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>চটপট : দিনের সব গুরুত্বপূর্ণ খবর, এক নজরে</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/stage-show-singers-in-distress-in-coronavirus-lockdown-situation_327300.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_22.jpg?itok=7AQJyuJS" width="700" height="400" alt="Stage Show Singers in Distress in Coronavirus Lockdown Situation" title="Stage Show Singers in Distress in Coronavirus Lockdown Situation"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>LOCKDOWN-এ বন্ধ STAGE SHOW, সংকটে সংগীত শিল্পীরা, অন্য জীবিকায় যেতে বাধ্য হচ্ছেন ARTISTS-রা</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/covaxin-human-trials-to-initiate-from-monday_327297.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_21.jpg?itok=oATjpB46" width="700" height="400" alt="Covaxin Human Trials to initiate from Monday" title="Covaxin Human Trials to initiate from Monday"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>PAGE ONE: COVAXIN-এর মানবদেহে পরীক্ষা শুরু সোমবার থেকে DELHI AIIMS-এ | TRIAL-এ অংশ নিচ্ছেন ১০০ জন</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/girl-from-dhaniakhali-allegedly-joined-jmb-and-became-a-terrorist_327295.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_20.jpg?itok=aj2HU_mK" width="700" height="400" alt="Girl From Dhaniakhali allegedly joined JMB and became a terrorist " title="Girl From Dhaniakhali allegedly joined JMB and became a terrorist "></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>ধনেখালির মেয়ে JMB জঙ্গি, ধরা পড়ল বাংলাদেশে, মেয়ের শাস্তি চান মা-বাবা</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/superfast-stay-updated-on-every-news-in-a-ziffy_327288.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_19.jpg?itok=iuL9AchJ" width="700" height="400" alt="SUPERFAST : STAY UPDATED ON EVERY NEWS IN A ZIFFY!" title="SUPERFAST : STAY UPDATED ON EVERY NEWS IN A ZIFFY!"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>SUPERFAST : দিনের সব খবরের আপডেট, দেখে নিন এক নজরে | STAY UPDATED IN A ZIFFY!</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/shyamnagar-heats-up-with-clashes-in-arjun-singh-rally_327287.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_18.jpg?itok=QGlHIZWA" width="700" height="400" alt="Shyamnagar Heats up with clashes in Arjun Singh rally" title="Shyamnagar Heats up with clashes in Arjun Singh rally"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>শ্যামনগরে অর্জুন সিংয়ের বিজেপির মিছিল ঘিরে ধুন্ধুমার</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/vikramgarh-market-sealed-due-to-excessive-footfall_327260.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_17.jpg?itok=NPqnLIO8" width="700" height="400" alt="Vikramgarh Market Sealed due to excessive footfall" title="Vikramgarh Market Sealed due to excessive footfall"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>অতিরিক্ত ভিড়ের কারণে বন্ধ করে দেওয়া হল বিক্রমগড় বাজার</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/getting-rashes-from-wearing-mask-all-day-see-what-you-need-to-do_327258.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_16.jpg?itok=TDLou3_-" width="700" height="400" alt="Getting Rashes from wearing mask all day? See what you need to do" title="Getting Rashes from wearing mask all day? See what you need to do"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>সারাদিন MASK পরার ফলে অনেকেরই ত্বকের সমস্যা হচ্ছে, দেখুন কীভাবে তার থেকে মুক্তি পাবেন | CORONAVIRUS</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/again-strict-lockdown-in-north-dumdum_327252.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_15.jpg?itok=Ybs9N7hF" width="700" height="400" alt="Again Strict Lockdown in North Dumdum" title="Again Strict Lockdown in North Dumdum"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>ফের এক সপ্তাহের কড়া লকডাউন উত্তর দমদমে</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/potato-prices-go-sky-high-corona-or-amphan-what-might-be-the-reason_327251.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_14.jpg?itok=Vtg6TVDB" width="700" height="400" alt="Potato prices go sky high, Corona or Amphan, what might be the reason?" title="Potato prices go sky high, Corona or Amphan, what might be the reason?"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>আলুর দাম আঁকাশ ছোঁয়া! ফড়েদের হাত ঘুড়ে DOUBLE দামে বিকোচ্ছে ALOO | আলু সেদ্ধ খেতেও এবার হিমসিম</h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/no-plans-of-total-lockdown-as-for-now-says-chief-secretary_327249.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_13.jpg?itok=ri0A-tIM" width="700" height="400" alt="No plans of Total lockdown as for now, says Chief Secretary" title="No plans of Total lockdown as for now, says Chief Secretary"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>রাজ্যজুড়ে LOCKDOWN-এর কোনও পরিকল্পনা এখনও পর্যন্ত নেই, তাই গুজবে কান দেবেন না | CORONAVIRUS </h3> </a> <span class="date"> </span> </div> </div> <div class="col-sm-4 col-md-4 i-list"> <div class="mini-video mini-video-h margin-bt30px"> <a href="/bengali/videos/community-transmission-started-in-kerala-says-vijayan_327192.html"> <div class="pos-relative"> <div class="list-list-video-img"><img data-qazy="true" class="img-responsive" src="https://bengali.cdn.zeenews.com/bengali/sites/default/files/styles/zm_700x400/public/2020/07/18/00000003_12.jpg?itok=Tc_ti8Rn" width="700" height="400" alt="COMMUNITY TRANSMISSION started in KERALA, says Vijayan" title="COMMUNITY TRANSMISSION started in KERALA, says Vijayan"></div> <span class="mid-vd-icon"><img src="https://bengali.cdn.zeenews.com/bengali/desktop/images/s-vd-icon.png" alt=""></span> </div> <h3>বাড়ছে CORONAVIRUS POSITIVE, COMMUNITY TRANSMISSION শুরু হয়ে গিয়েছে, জানাল KERALA | ফের LOCKDOWN?</h3> </a> <span class="date"> </span> </div> </div> </div> <div class="text-center"><ul class="pagination"><li class="active first"><a href="#">1</a></li> <li><a title="Go to page 2" href="/bengali/live-tv?page=1">2</a></li> <li><a title="Go to page 3" href="/bengali/live-tv?page=2">3</a></li> <li><a title="Go to page 4" href="/bengali/live-tv?page=3">4</a></li> <li><a title="Go to page 5" href="/bengali/live-tv?page=4">5</a></li> <li><a title="Go to page 6" href="/bengali/live-tv?page=5">6</a></li> <li><a title="Go to page 7" href="/bengali/live-tv?page=6">7</a></li> <li><a title="Go to page 8" href="/bengali/live-tv?page=7">8</a></li> <li><a title="Go to page 9" href="/bengali/live-tv?page=8">9</a></li> <li class="pager-ellipsis disabled"><span>…</span></li> <li class="next last"><a title="Go to next page" href="/bengali/live-tv?page=1">next ��</a></li> </ul></div> <div class="lastItem"></div> </div> </div> <script type="text/javascript" src="https://hindi.cdn.zeenews.com/hindi/desktop/js/stick-n.js"></script> <script src="https://hindi.cdn.zeenews.com/hindi/desktop/js/jquery.autopager-1.0.0.js"></script> <script type="text/javascript"> (function ($) { $(document).ready(function(){ var maindiv = false; var dis = 0; $("<div class='col-sm-12 col-md-12 i-list taboola' style='padding-bottom:20px'><div id='taboola-below-category-thumbnails-1'></div></div>").insertAfter("div.zcontent > div:nth-child(3)"); $("<div class='col-sm-12 col-md-12 i-list taboola' style='padding-bottom:20px'><div id='taboola-below-category-thumbnails-2'></div></div>").insertAfter("div.zcontent > div:nth-child(10)"); window._taboola = window._taboola || []; _taboola.push({mode: 'thumbnails-a',container: 'taboola-below-category-thumbnails-1',placement: 'Below Category Thumbnails 1',target_type: 'mix'}); _taboola.push({mode: 'thumbnails-a',container: 'taboola-below-category-thumbnails-2',placement: 'Below Category Thumbnails 2',target_type: 'mix'}); if($.autopager){ var use_ajax = false; if(use_ajax==false) { var view_selector = 'div.content'; // + settings.view_name; + '.view-display-id-' + settings.display; var content_selector = view_selector + ' > div.zcontent'; // + settings.content_selector; var items_selector = content_selector + ' > div.i-list'; // + settings.items_selector; var pager_selector = view_selector + ' > div.text-center > ul.pagination'; // + settings.pager_selector; var next_selector = pager_selector + ' > li.last > a:last'; // + settings.next_selector; var auto_selector = view_selector + ' > div.text-center'; var img_location = view_selector + ' > div.row:last'; var img_path = '<div class="loading-block text-center margin-bt50px"><div class="loading-text">Loading</div><div class="zee-l"><svg height="100%" version="1.1" viewBox="0 0 98 98" width="100%"><circle class="ytp-svg-autoplay-circle" cx="49" cy="49" fill="" fill-opacity="0.7" r="48"></circle><circle id="green-halo" cx="-49" cy="49" fill="none" r="46.5" stroke="#ff5050" stroke-dasharray="0,20000" stroke-dashoffset="0" stroke-width="1" transform="rotate(-90)"></circle><text id="myTimer" text-anchor="middle" x="100" y="110"></text></svg></div></div>'; //settings.img_path; var img = '<div id="views_infinite_scroll-ajax-loader">' + img_path + '</div>'; $(pager_selector).hide(); //console.log($(next_selector).attr('href')); var x = 0; var url = ''; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var prevLoc = $(location).attr('href'); var handle = $.autopager({ appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function(){ $(img_location).after(img); circle = $('.left-section').find('#green-halo'); myTimer = $('.left-section').find('#myTimer'); angle = 0; Inverval = setInterval(function (){ //console.log("angle:" + angle); $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) { angle = 1; } angle += angle_increment; }.bind(this),interval); }, load: function(){ $('div.loading-block').remove(); clearInterval(Inverval); /*$('.repeat-block > .row > div.main-rhs<php print $ni; > > div.rhs<php print $ni; >:first').clone().appendTo('.repeat-block >.row > div.main-rhs' + x); $('.center-section >.repeat-block:last').before('<div class="hor-ad margin-bt50px text-center margin-auto"><div id="ad-'+ x + '" class="dfp-ad"><img src="https://bengali.cdn.zeenews.com/bengali/sites/all/themes/zeemedia/templates/article2017/images/970.jpg" class="img-responsive margin-auto text-center"></div></div><div class="block text-center margin-bt50px margin-tp30px"><h2 class="next-s">अगली खबर</h2></div>');*/ } }); function fillElementWithAd($el, slotCode, size, targeting){ if (typeof targeting === 'undefined') { targeting = {}; } else if ( Object.prototype.toString.call( targeting ) !== '[object Object]' ) { targeting = {}; } var elId = $el.attr('id'); googletag.cmd.push(function(){ var slot = googletag.defineSlot(slotCode, size, elId); for (var t in targeting){ slot.setTargeting(t, targeting[t]); } slot.addService(googletag.pubads()); googletag.display(elId); googletag.pubads().refresh([slot]); }); } $(window).scroll(function() { var last = $(auto_selector).filter(':last'); //console.log("Last" + last); var lastHeight = last.offset(); //console.log('lastHeight' + lastHeight); st = $(layout).scrollTop(); if((last.offset().top + last.height() - 500) < $(document).scrollTop() + $(window).height()){ //console.log("**get"); //console.log("x:" + x); handle.autopager('load'); setTimeout(function(){ //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); }, 6000); } }); var prev_content_height = $(content_selector).height(); //$(function() { var layout = $(content_selector); var st = 0; ///}); } } $(".sidebar").theiaStickySidebar(); }); })(jQuery); </script>
খবরLive TV Live TV নতুন রূপে সেজে উঠছে শিয়ালদহ রেল স্টেশন তৃণমূলের গোষ্ঠীকোন্দল, এলাকা দখলের লড়াই, আর সেই সংঘর্ষ আটকাতে গিয়ে গুরুতর জখম পুলিসকর্মীরা SUPERFAST : দিনের সব খবরের আপডেট, দেখে নিন এক নজরে | STAY UPDATED IN A ZIFFY! বিশ্বে এখনও পর্যন্ত কোভিড পজিটিভ ১ কোটি ৪৫ লক্ষ জন করোনার সময়েও বাজারে দেদার ভিড়, সামাল দিতে মাথায় হাত প্রশাসনের ক্রমেই বাড়ছে করোনা আক্রান্তের সংখ্যা, পাল্লা দিয়ে বাড়ছে মৃত্যু "আগেও বলছি, এখনও বলছি, সারা দেশে নানা জায়গায় অসংখ্য সংক্রমিতের উত্স-সূত্র পাওয়া যাচ্ছে না," আইএমএ-র সুরেই গোষ্ঠী সংক্রমণ শুরুর ইঙ্গিত জনস্বাস্থ্য বিশেষজ্ঞের 'দেশের বিভিন্ন অংশে গোষ্ঠী সংক্রমণের সম্ভাবনা প্রবল,' কেরলের মুখ্যমন্ত্রীর পর IMA-এর দাবিতে উদ্বেগ COMMUNITY TRANSMISSION IN INDIA শুরু হয়েছে, ইঙ্গিত KERALA ও IMA-এর, দেখুন কী জানাচ্ছেন চিকিত্সকরা চটপট : দিনের সব গুরুত্বপূর্ণ খবর, এক নজরে LOCKDOWN-এ বন্ধ STAGE SHOW, সংকটে সংগীত শিল্পীরা, অন্য জীবিকায় যেতে বাধ্য হচ্ছেন ARTISTS-রা PAGE ONE: COVAXIN-এর মানবদেহে পরীক্ষা শুরু সোমবার থেকে DELHI AIIMS-এ | TRIAL-এ অংশ নিচ্ছেন ১০০ জন ধনেখালির মেয়ে JMB জঙ্গি, ধরা পড়ল বাংলাদেশে, মেয়ের শাস্তি চান মা-বাবা SUPERFAST : দিনের সব খবরের আপডেট, দেখে নিন এক নজরে | STAY UPDATED IN A ZIFFY! শ্যামনগরে অর্জুন সিংয়ের বিজেপির মিছিল ঘিরে ধুন্ধুমার অতিরিক্ত ভিড়ের কারণে বন্ধ করে দেওয়া হল বিক্রমগড় বাজার সারাদিন MASK পরার ফলে অনেকেরই ত্বকের সমস্যা হচ্ছে, দেখুন কীভাবে তার থেকে মুক্তি পাবেন | CORONAVIRUS ফের এক সপ্তাহের কড়া লকডাউন উত্তর দমদমে আলুর দাম আঁকাশ ছোঁয়া! ফড়েদের হাত ঘুড়ে DOUBLE দামে বিকোচ্ছে ALOO | আলু সেদ্ধ খেতেও এবার হিমসিম রাজ্যজুড়ে LOCKDOWN-এর কোনও পরিকল্পনা এখনও পর্যন্ত নেই, তাই গুজবে কান দেবেন না | CORONAVIRUS বাড়ছে CORONAVIRUS POSITIVE, COMMUNITY TRANSMISSION শুরু হয়ে গিয়েছে, জানাল KERALA | ফের LOCKDOWN? 1 2 3 4 5 6 7 8 9 … next ›
[ad_1] তৃণমূলের গোষ্ঠীকোন্দল, এলাকা দখলের লড়াই, আর সেই সংঘর্ষ আটকাতে গিয়ে গুরুতর জখম পুলিসকর্মীরা [ad_2] Source link
View On WordPress
0 notes
gokul2181 · 5 years ago
Text
Gold falls by Rs 32 to Rs 49,986 per 10 gram | Bullion News
New Post has been published on https://jordarnews.in/gold-falls-by-rs-32-to-rs-49986-per-10-gram-bullion-news/
Gold falls by Rs 32 to Rs 49,986 per 10 gram | Bullion News
Share:
Updated:
Jul 16, 2020, 18:05 PM IST
(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk')); (function ($) /*Drupal.behaviors.pagerload = attach: function (context, settings) */ $(document).ready(function() $(".sidebar").theiaStickySidebar(); /*$.get( "/hindi/zmapp/mobileapi/sections.php?sectionid=17,18,19,23,21,22,25,20", function( data ) $( "#sub-menu" ).html( data ); alert( "Load was performed." ); );*/ var nextpath = ''; var pg = 1; var nextload= true; var string = '';var ice = 0; var playerFly; var load = '
Loading
'; var cat = "?cat=657606"; //$(".main-rhs2296251").theiaStickySidebar(); var instagram_script=document.createElement('script'); instagram_script.defer='defer'; instagram_script.async='async'; instagram_script.src="https://platform.instagram.com/en_US/embeds.js"; document.head.appendChild(instagram_script); /*************************************/ /*$(window).scroll(function() var last = $('div.listing').filter('div:last'); var lastHeight = last.offset().top ; if(lastHeight + last.height() < $(document).scrollTop() + $(window).height() && nextload==true) var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; $.ajax( url: "/micros/article-list.php" + cat + nextpath, async: true, dataType: "json", beforeSend: function() $('div.listing').append(load); nextload=false; //console.log("/micros/article-list.php" + cat + nextpath); ice = 1; circle = $('.center-section').find('#green-halo'); myTimer = $('.center-section').find('#myTimer'); angle = 0; Inverval = setInterval(function () $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) angle = 1; angle += angle_increment; .bind(this),interval); , success: function(data) nextload=false; //console.log("success"); //console.log(data); $.each(data['rows'], function(key,val) //console.log("data found"); ice = 2; if(val['id']!='2296251') string = '
'+val["tag"]+'
' + val["title"] + '
' + val["summary"] + '
Read Full Article
'; $('div.listing').append(string); ); , error:function(xhr) //console.log("Error"); //console.log("An error occured: " + xhr.status + " " + xhr.statusText); nextload=false; , complete: function() $('div.listing').find(".loading-block").remove();; pg +=1; //console.log("mod" + ice%2); nextpath = '&page=' + pg; //console.log("request complete" + nextpath); cat = "?cat=657606"; //console.log(nextpath); nextload=(ice%2==0)?true:false; );
//lastoff = last.offset(); //console.log("**" + lastoff + "**"); );*/ var maindiv = false; var dis = 0; var fbcontainer = ''; var fbid = ''; var fb_script=document.createElement('script'); fb_script.text= "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src = "https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr2296251"); //alert(x+ "-" + url); var fdiv = '
'; //console.log(fdiv); //$(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); function fillElementWithAd($el, slotCode, size, targeting) if (typeof targeting === 'undefined') targeting = ; else if ( Object.prototype.toString.call( targeting ) !== '[object Object]' ) targeting = ; var elId = $el.attr('id'); //console.log("elId:" + elId); googletag.cmd.push(function() var slot = googletag.defineSlot(slotCode, size, elId); for (var t in targeting) slot.setTargeting(t, targeting[t]); slot.addService(googletag.pubads()); googletag.display(elId); //googletag.pubads().refresh([slot]); ); $(document).delegate("button[id^='mf']", "click", function() fbcontainer = ''; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr"); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); );
function onPlayerStateChange(event) var ing, fid; //console.log(event + "---player"); $('iframe[id*="video-"]').each(function() _v = $(this).attr('id'); //console.log("_v: " + _v); if(_v != event) //console.log("condition match"); ing = new YT.get(_v); if(ing.getPlayerState()=='1') ing.pauseVideo(); ); $('div[id*="video-"]').each(function() _v = $(this).attr('id'); //console.log("_v: " + _v + " event: " + event); if(_v != event) //jwplayer(_v).play(false); ); function onYouTubePlay(vid, code, playDiv,vx, pvid) function onYouTubePlayer(vid, code, playDiv,vx, pvid) //console.log(playDiv + "Get Youtue " + vid); //$("#"+vid).find(".playvideo-"+ vx).hide(); var player = new YT.Player(playDiv , height: '450', width: '100%', videoId:code, playerVars: 'autoplay': 1, 'showinfo': 1, 'controls': 1 , events: 'onStateChange': function(event) onPlayerStateChange(event.target.a.id); ); $("#video-"+vid).show(); function anvatoPlayerAPIReady(vid, code, playDiv,vx, pvid,vurl) AnvatoPlayer(playDiv).init( "url": code, "title1":"", "autoplay":true, "share":false, "pauseOnClick":true, "expectPreroll":true, "width":"100%", "height":"100%", "poster":"", "description":"", "plugins": "googleAnalytics": "trackingId":"UA-2069755-1", "events": "PLAYING_START": "alias" : "play - zee english video", "category" : "zee english video", "label" : "https://zeenews.india.com" + vurl, "metric" : "1" , "BUFFER_START": "alias" : "buffer - zee english video", "category" : "zee english video", "label" : "https://zeenews.india.com" + vurl, "metric" : "2" , "AD_BREAK_STARTED": "alias" : "break - zee english video", "category" : "zee english video", "label" : "https://zeenews.india.com" + vurl, "metric" : "3" , "VIDEO_COMPLETED": "alias" : "complete - zee english video", "category" : "zee english video", "label" : "https://zeenews.india.com" + vurl, "metric" : "4" , "dfp": "clientSide": "adTagUrl":"https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/11440465/Zeenews_English_Video/Zeenews_English_Preroll&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&url=https://zeenews.india.com"+vurl+"&description_url=https://zeenews.india.com"+vurl+"&correlator=[timestamp]", ); $(document).delegate("div[id^='play']", "click", function() //console.log($(this).attr("id")); //console.log($(this).attr("video-source")); //console.log($(this).attr("video-code")); var isyoutube = $(this).attr("video-source"); var vurl = $(this).attr("video-path"); var vid = $(this).attr("id"); $(this).hide(); var pvid = $(this).attr("newsid"); var vx = $(this).attr("id").replace('play-',''); var vC = $(this).attr("video-code"); var playDiv = "video-" + vid + "-" + pvid; if(isyoutube =='No') anvatoPlayerAPIReady(vid, vC, playDiv,vx, pvid, vurl); else onYouTubePlay(vid, vC, playDiv,vx, pvid); ); $(document).delegate("div[id^='ptop']", "click", function() var vid = $(this).attr("id").replace('ptop',''); $(this).hide(); var pvid = $(this).attr("newsid"); var vurl = $(this).attr("video-path"); //console.log($(this).attr("id") + "--" + vid); //console.log($(this).parent().children().find('#play-'+vid).attr("video-source")); //console.log($(this).parent().children().find('#play-'+vid).attr("video-code")); var isyoutube = $(this).parent().children().find('#play-'+vid).attr("video-source"); var vC = $(this).parent().children().find('#play-'+vid).attr("video-code"); var playDiv = "mvideo-play-" + vid + "-" + pvid; if(isyoutube =='No') //console.log(jwplayer($(this).attr("id")).getState()); anvatoPlayerAPIReady($(this).attr("id"), vC, playDiv, vid, pvid, vurl);
else onYouTubePlay($(this).attr("id"), vC, playDiv, vid, pvid); );
var nxti = 3; var ci = 1; var nxti_1 = 6; var nxti_2 = 9; var nxti_3 = 12; //console.log("totalPCount: " + $("#star2296251 > div.field-name-body > div.field-items > div.field-item").children('p').length); var pl = $("#star2296251 > div.field-name-body > div.field-items > div.field-item").children('p').length; var adcount = 0; var adcode = '/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_1_300x250'; if(pl>3) $("#star2296251 > div.field-name-body > div.field-items > div.field-item").children('p').each(function(i, n) ci = parseInt(i) + 1; t=this; var htm = $(this).html(); d = $("
"); if((i+1)%3==0 && (i+1)>2 && $(this).html().length>20 && ci
').insertAfter(t); adcount++; else if(adcount>=3) return false; ); if($.autopager==false) var use_ajax = false; /*var disqus_shortname = 'zeehindi'; var disqus_identifier; //made of post id and guid var disqus_url; //post permalink
function loadDisqus(source, identifier, url, nid)
if (window.DISQUS) //alert("if"); jQuery('
').insertAfter(source); jQuery('#disqus_thread').insertAfter(source); //append the HTML after the link //if Disqus exists, call it's reset method with new parameters DISQUS.reset( reload: true, config: function () this.page.identifier = identifier; this.page.url = url; ); else jQuery('
').insertAfter(source); disqus_identifier = identifier; //set the identifier argument disqus_url = url; //set the permalink argument
//append the Disqus embed script to HTML var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; jQuery('head').append(dsq); ;*/ /*$('.disqusOn').live( "click", notify ); function notify() identifier = $(this).attr('id'); dUrl = $(this).attr('disqus-url'); source = $(this).parent(); loadDisqus(jQuery(this), identifier, dUrl); */ function loadshare(curl) history.replaceState('' ,'', curl); if(window.OBR) window.OBR.extern.researchWidget(); //console.log("loadshare Call->" + curl); //$('html head').find('title').text("main" + nxtTitle); if(_up == false) var cu_url = curl; gtag('config', 'UA-2069755-1', 'page_path': cu_url );
if(window.COMSCORE) window.COMSCORE.beacon(c1: "2", c2: "9254297"); var e = Date.now(); $.ajax( url: "/marathi/news/zscorecard.json?" + e, success: function(e) ) //console.log('ga:'+r); /*(function () var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); )();*/ //console.log("loadshare Call"); if(use_ajax==false) //console.log('getting'); var view_selector = 'div.center-section'; // + settings.view_name; + '.view-display-id-' + settings.display; var content_selector = view_selector; // + settings.content_selector; var items_selector = content_selector + ' > div.rep-block'; // + settings.items_selector; var pager_selector = 'div.next-story-block > div.view-zn-article-mc-all-2017 > div.view-content > div.clearfix'; // + settings.pager_selector; var next_selector = 'div.next-story-block > div.view-zn-article-mc-all-2017 > div.view-content > div.clearfix > a:last'; // + settings.next_selector; var auto_selector = 'div.tag-block'; var img_location = view_selector + ' > div.rep-block:last'; var img_path = '
Loading
'; //settings.img_path; //var img = '
' + img_path + '
'; var img = img_path; //$(pager_selector).hide(); //alert($(next_selector).attr('href')); var x = 0; var url = ''; var prevLoc = window.location.pathname; var circle = ""; var myTimer = ""; var interval = 30; var angle = 0; var Inverval = ""; var angle_increment = 6; var handle = $.autopager( appendTo: content_selector, content: items_selector, runscroll: maindiv, link: next_selector, autoLoad: false, page: 0, start: function() $(img_location).after(img); circle = $('.center-section').find('#green-halo'); myTimer = $('.center-section').find('#myTimer'); angle = 0; Inverval = setInterval(function () $(circle).attr("stroke-dasharray", angle + ", 20000"); //myTimer.innerHTML = parseInt(angle/360*100) + '%'; if (angle >= 360) angle = 1; angle += angle_increment; .bind(this),interval); , load: function() $('div.loading-block').remove(); clearInterval(Inverval); //$('.repeat-block > .row > div.main-rhs2296251').find('div.rhs2296251:first').clone().appendTo('.repeat-block >.row > div.main-rhs' + x); $('div.rep-block > div.main-rhs2296251 > div:first').clone().appendTo('div.rep-block > div.main-rhs' + x); $('.center-section >.row:last').before('
Next Story
'); //$(".main-rhs" + x).theiaStickySidebar(); var fb_script=document.createElement('script'); fb_script.text= "(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src = "https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9";fjs.parentNode.insertBefore(js, fjs);(document, 'script', 'facebook-jssdk'));"; var fmain = $(".sr"+ x); //alert(x+ "-" + url); var fdiv = '
'; //$(fb_script).appendTo(fmain); $(fdiv).appendTo(fmain); FB.XFBML.parse(); var $dfpAd = $('.center-section').children().find("#ad-"+ x); //console.log($dfpAd); /*var pl = $("#star2296251 > div.field-name-body > div.field-items > div.field-item").children('p').length; if(pl>3) xp = "#star"+x; $(xp +" > div.field-name-body > div.field-items > div.field-item").children('p').each(function(i, n) ci= parseInt(i) + 1; t=this; d = $("
ad Space
"); console.log("i: " + i + " ci:" + ci + " n:" + n); console.log(this); if(ci%3==0)d.insertAfter(t);fillElementWithAd(d, '/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_1_300x250', [300, 250], ); ); */ xp = "#star"+x; var pl = $(xp + " > div.field-name-body > div.field-items > div.field-item").children('p').length; if(pl>3) $(xp + " > div.field-name-body > div.field-items > div.field-item").children('p').each(function(i, n) ci= parseInt(i) + 1; t=this; d = $("
"); //console.log("i: " + i + " ci:" + ci + " n:" + n); //console.log(this); if(i==2)d.insertAfter(t);fillElementWithAd(d, '/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_1_300x250', [300, 250], ); /*if(pl>8) if(i==(pl-2))d.insertAfter(t);fillElementWithAd(d, '/11440465/Zeenews_English_Web/Zeenews_English_AS_Inarticle_1_300x250', [300, 250], ); */
);
//var $dfpAdrhs = $('.main-rhs' + x).children().find('.adATF').empty().attr("id", "ad-300-" + x); //$('.content-area > .main-article > .row > .main-rhs'+x).find('#ad-300-' + x); //var $dfpAdrhs2 = $('.main-rhs' + x).children().find('.adBTF').empty().attr("id", "ad-300-2-" + x);//$('.content-area > .main-article > .row > .main-rhs'+x).find('#ad-300-2-' + x); //var $dfpMiddleAd = $('.content-area > .main-article > .row').find('#ar'+x).find('#ad-middle-' + x).empty(); //fillElementWithAd($dfpAdrhs, '/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_300x250', [[300, 250], [300, 600]], ); //fillElementWithAd($dfpAdrhs2, '/11440465/Zeenews_English_Web/Zeenews_English_AS_BTF_1_300x250', [300, 250], ); //fillElementWithAd($dfpMiddleAd, '/11440465/Zeenews_Hindi_Article_Middle_300x250_BTF', [300, 250], ); var instagram_script=document.createElement('script'); instagram_script.defer='defer'; instagram_script.async='async'; instagram_script.src="https://platform.instagram.com/en_US/embeds.js";
/*var outbrain_script=document.createElement('script'); outbrain_script.type='text/javascript'; outbrain_script.async='async'; outbrain_script.src='//widgets.outbrain.com/outbrain.js'; var Omain = $("#outbrain-"+ x); //alert(Omain + "--" + $(Omain).length);
$(Omain).after(outbrain_script); var rhs = $('.main-article > .row > div.article-right-part > div.rhs2296251:first').clone(); $(rhs).find('.ad-one').attr("id", "ad-300-" + x).empty(); $(rhs).find('.ad-two').attr("id", "ad-300-2-" + x).empty(); //$('.main-article > .row > div.article-right-part > div.rhs2296251:first').clone().appendTo('.main-article > .row > div.main-rhs' + x); $(rhs).appendTo('.main-article > .row > div.main-rhs' + x); */
setTimeout(function()
var twit = $("div.field-name-body").find('blockquote[class^="twitter"]').length; var insta = $("div.field-name-body").find('blockquote[class^="instagram"]').length; if(twit==0)twit = ($("div.field-name-body").find('twitterwidget[class^="twitter"]').length); if(twit>0) if (typeof (twttr) != 'undefined') twttr.widgets.load();
else $.getScript('https://platform.twitter.com/widgets.js'); //$(twit).addClass('tfmargin'); if(insta>0) $('.content > .left-block:last').after(instagram_script); //$(insta).addClass('tfmargin'); window.instgrm.Embeds.process(); , 1500); ); /*$("#loadmore").click(function() x=$(next_selector).attr('id'); var url = $(next_selector).attr('href'); disqus_identifier = 'ZNH' + x; disqus_url = url; handle.autopager('load'); history.pushState('' ,'', url); setTimeout(function() //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); , 6000); );*/
/*$("button[id^='mf']").live("click", disqusToggle); function disqusToggle() console.log("Main id: " + $(this).attr('id')); */ $(document).delegate("button[id^='mf']", "click", function() fbcontainer = ''; fbid = '#' + $(this).attr('id'); var sr = fbid.replace("#mf", ".sr");
//console.log("Main id: " + $(this).attr('id') + "Goodbye!jQuery 1.4.3+" + sr); $(fbid).parent().children(sr).toggle(); fbcontainer = $(fbid).parent().children(sr).children(".fb-comments").attr("id"); //console.log(fbcontainer); //var commentsContainer = document.getElementById(fbcontainer); //commentsContainer.innerHTML = '';
); /************Player Code ***********/ var title, imageUrl, description, author, shortName, identifier, timestamp, summary, newsID, nextnews; var previousScroll = 0; //console.log("prevLoc" + prevLoc); $(window).scroll(function() var last = $(auto_selector).filter(':last'); var lastHeight = last.offset().top ; //st = $(layout).scrollTop(); //console.log("st:" + st); var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll) _up = false; else _up = true; previousScroll = currentScroll; //console.log("_up" + _up);
var cutoff = $(window).scrollTop() + 64; //console.log(cutoff + "**"); $('div[id^="row"]').each(function() //console.log("article" + $(this).children().find('.left-block').attr("id") + $(this).children().find('.left-block').attr('data-url')); if($(this).offset().top + $(this).height() > cutoff) //console.log("$$" + $(this).children().find('.left-block').attr('data-url')); if(prevLoc != $(this).children().find('.left-block').attr('data-url')) prevLoc = $(this).children().find('.left-block').attr('data-url'); $('html head').find('title').text($(this).children().find('.left-block').attr('data-title')); $('meta[name=description]').attr("content",$(this).children().find('.left-block').attr('data-summary')); $('meta[name=keywords]').attr("content",$(this).children().find('.left-block').attr('data-keyword')); $('meta[name=news_keywords]').attr("content",$(this).children().find('.left-block').attr('data-keyword'));
pSUPERFLY.virtualPage(prevLoc,$(this).children().find('.left-block').attr('data-title')); //console.log("Summary: " + $(this).children().find('.left-block').attr('data-summary')); //console.log("Keyword: " + $(this).children().find('.left-block').attr('data-keyword')); //history.pushState('' ,'', prevLoc); loadshare(prevLoc); return false; // stops the iteration after the first one on screen ); if(lastHeight + last.height() < $(document).scrollTop() + $(window).height()) //console.log("**get"); url = $(next_selector).attr('href'); x=$(next_selector).attr('id'); //console.log("x:" + x); //handle.autopager('load'); /*setTimeout(function() //twttr.widgets.load(); //loadDisqus(jQuery(this), disqus_identifier, disqus_url); , 6000);*/ //lastoff = last.offset(); //console.log("**" + lastoff + "**"); ); //$( ".content-area" ).click(function(event) // console.log(event.target.nodeName); //); /*$( ".comment-button" ).live("click", disqusToggle); function disqusToggle() var id = $(this).attr("id"); $("#disqus_thread1" + id).toggle(); ;*/ //$(".main-rhs2296251").theiaStickySidebar(); var prev_content_height = $(content_selector).height(); //$(function() var layout = $(content_selector); var st = 0; ///); ); /* ;*/ )(jQuery); (function() var reset_scroll;
$(function() return $("[data-sticky_column]").stick_in_parent( parent: "[data-sticky_parent]" ); );
reset_scroll = function() var scroller; scroller = $("body,html"); scroller.stop(true); if ($(window).scrollTop() !== 0) scroller.animate( scrollTop: 0 , "fast"); return scroller; ;
window.scroll_it = function() var max; max = $(document).height() - $(window).height(); return reset_scroll().animate( scrollTop: max , max * 3).delay(100).animate( scrollTop: 0 , max * 3); ;
window.scroll_it_wobble = function() var max, third; max = $(document).height() - $(window).height(); third = Math.floor(max / 3); return reset_scroll().animate( scrollTop: third * 2 , max * 3).delay(100).animate( scrollTop: third , max * 3).delay(100).animate( scrollTop: max , max * 3).delay(100).animate( scrollTop: 0 , max * 3); ;
$(window).on("resize", (function(_this) return function(e) return $(document.body).trigger("sticky_kit:recalc"); ; )(this));
).call(this);
bodyoverflow:hidden .article-tag-linkmargin:5px 0px;padding:0px;font-size:14px;font-weight:700;color:#e21727;text-transform:uppercase; .article-tag-link acolor:#e21727; .article-widgetparafont-size:38px;color:#191c20;line-height:normal;margin-bottom:10px; .article-widgetpara afont-size:38px;color:#191c20;line-height:normal; .widget-image-blockposition:relative;height:270px;overflow:hidden; .stry_ldmorewidth:100%;position:absolute;bottom:0px;text-align:center;display:block; .stry_fdrbottom:0;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);height:200px;position:absolute;width:100%; .stry_shwmrebackground:#2089ff;color:#FFF;cursor:pointer;padding:10px 20px;text-align:center;position:relative;display:inline-block;left:50%;margin-left:-83px;border-top-left-radius:5px;border-top-right-radius: 5px; .stry_shwmre:hoverbackground:#1581f9 .wid-lineborder-bottom:1px solid #2089ff; position:absolute;bottom:0;width:100%; .widget-vspadding-left:inherit;padding-right:inherit; .white-txtcolor:#FFF !important; .article-head-block pfont-size:18px;color:#444;line-height:26px .play-bwidth:70px;height:70px;top:50%;left:50%;position:absolute;z-index:1009;cursor:pointer;margin-left:-35px;margin-top:-35px;bottom:inherit;right:inherit;
function on_load_google_ad() googletag.cmd.push(function() googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_970x90', [[970, 90], [970, 250], [970, 66], [728, 90]], 'div-gpt-ad-1504525832454-0').addService(googletag.pubads().setTargeting('category', ["Bullion","Gold","Gold Price","Gold Rates","Gold Rates Today"])); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_ATF_300x250', [[300, 600], [300, 250]], 'div-article-rhs-atf-ad').addService(googletag.pubads().setTargeting('category', ["Bullion","Gold","Gold Price","Gold Rates","Gold Rates Today"])); googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_BTF_1_300x250', [300, 250], 'div-gpt-ad-1504525832454-2').addService(googletag.pubads().setTargeting('category', ["Bullion","Gold","Gold Price","Gold Rates","Gold Rates Today"]));googletag.defineSlot('/11440465/Zeenews_English_Web/Zeenews_English_AS_OOP_1x1', [1, 1], 'div-gpt-ad-1504526235866-6').addService(googletag.pubads().setTargeting('category', ["Bullion","Gold","Gold Price","Gold Rates","Gold Rates Today"])); googletag.pubads().disableInitialLoad(); googletag.pubads().enableAsyncRendering(); googletag.pubads().set('page_url','https://zeenews.india.com/'); googletag.pubads().enableSingleRequest(); googletag.pubads().collapseEmptyDivs(); googletag.enableServices(); ); googletag.cmd.push(function() googletag.display('div-article-rhs-atf-ad'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504525832454-0'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504525832454-2'); ); googletag.cmd.push(function() googletag.display('div-gpt-ad-1504526235866-6'); );
on_load_google_ad(); function sendAdserverRequest() try if (pbjs && pbjs.adserverRequestSent) return; googletag.cmd.push(function() googletag.pubads().refresh(); ); catch (e)
googletag.cmd.push(function() googletag.pubads().refresh(); ); setTimeout(function() sendAdserverRequest(); , 5000);
function on_load_fb_twitter_widgets() (function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk'));
window.twttr = (function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr (document, "script", "twitter-wjs"));
//setTimeout(function() on_load_google_ad(); , 5000); setTimeout(function() on_load_fb_twitter_widgets(); , 5000); Source link
0 notes