When I use entry.puiblishedDate getting "undefined" error message, can you 
please help if there is any other way to get the date of the article 
published
 
<script type="text/javascript">
        google.load("feeds", "1");
               
        function OnLoad() {                                               
            var query = 'Century 21';
            google.feeds.findFeeds(query, findDone); 
        }  
        
        function findDone(result) {   
             if (!result.error) {
                var content = document.getElementById('content');
                var html = '';
                for (var i = 0; i < result.entries.length; i++) 
{                    
                    var entry = result.entries[i];
                    html += '<p><a href="' + entry.link + '" 
style=display:block;color:Blue;width:900px;font-size=small target=_blank>' 
+ entry.title + entry.publishedDate + '</a></p>';
                }
                content.innerHTML = html;
            }
        }
        google.setOnLoadCallback(OnLoad);
    </script> 

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
To view this message on the web, visit
https://groups.google.com/d/msgid/google-ajax-search-api/e6678766-e08b-4efd-bb97-b052119188ce%40googlegroups.com
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to