I would like to access the generated feed for checking, ordering, selection and so on.
But, how can I do it? Nothing seems to work. My last approach: <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("feeds", "1"); function initialize() { var feed = new google.feeds.Feed("http://euro-med.dk/?feed=atom"); feed.setNumEntries(10); //20 feed.includeHistoricalEntries(); feed.load(function(result) { if (!result.error) { var container = document.getElementById("euromed"); for (var i = 0; i < result.feed.entries.length; i++) { var entry = result.feed.entries[i]; var li = document.createElement("li"); li.innerHTML = entry.title; container.appendChild(li); } } }); } google.setOnLoadCallback(initialize); $(document).ready( function() { $('li').live().each(function() { // delay(5000) $('body').append(' ---> '+$(this).text()); }) }); </script> </head> <body> <ul id="euromed"> <li>Zeile 1</li> </ul> </body> -- 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/msg/google-ajax-search-api/-/31k8K85JWR8J For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
