Hi, I'm new to Ajax and JavaScript. I had to use RSS feed in my project. Thankfully I got what I want in this website "https://developers.google.com/feed/v1/devguide#getting_started". I used the below code which I edited in the above link and want to know How I could display the result in the HTML or ColdFusion pages. Please help me out on this.
Here is my code: <head> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("feeds", "1"); function OnLoad() { // Create a feed control var feedControl = new google.feeds.FeedControl(); // Add two feeds. feedControl.addFeed("http://feeds.feedburner.com/xyzBlog"); // Draw it. feedControl.draw(document.getElementById("content")); } google.setOnLoadCallback(OnLoad); </script> </head> Thanks in advance. -- 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/-/B4tWSNRkaDAJ For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
