javascript - google.elements.newsShow display Time not working -


i trying use google newsshow api display news in html app. here code

<html xmlns="http://www.w3.org/1999/xhtml">   <head>     <meta http-equiv="content-type" content="text/html; charset=utf-8"/>     <title>google ajax search api sample</title>     <script src="http://www.google.com/jsapi?key=aizasya5m1nc8ws2bbmprwku5gfradvd_hgq6g0" type="text/javascript"></script>     <script type="text/javascript"> google.load("elements", "1", {packages : ["newsshow"]});  function onload() {   // set display time 2 seconds, , transition time 100 ms   var options = {     "querylist" : [       {         "title" : "indian news",         "topic" : "n",         "ned" : "in"       }     ],     "displaytime" : 1000,     "transitiontime" : 50   }   var content = document.getelementbyid('content');   var newsshow = new google.elements.newsshow(content, options); }  google.setonloadcallback(onload);     </script>   </head>   <body style="font-family: arial;border: 0 none;">     <div id="content"></div>   </body> </html> 

this code working fine until yesterday. morning display time not working @ all.

i referred example provided in link, https://code.google.com/apis/ajax/playground/#timer_options

here not working, remember how news updated according transition time.

i have tried these things, 1. closed browser n started again 2. restarted system 3. checking example on other desktops.

yet nothings working. totally unaware whats happening.

could help,

thanks ur time!!

google abandoned "newsshow". had been deprecated long time few weeks ago newsshow stopped working. had scramble build replacement sites.

here google news rss replacement in many ways better:

http://www.gooplusplus.com/news-frame-guide.html

see forum thread:

http://hypercube.us/forum/index.php?topic=1501.0


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -