SEARCH
0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Prev | Current Page 161 | Next

Deepak Vohra

"Ajax in Oracle JDeveloper"

Iterate over the entries to obtain each of the entries in the RSS
Feed Specify the attributes to be displayed.
var attributes = [???title???, ???link???, ???publishedDate???,
???contentSnippet???];
Create a div element for each of the attributes and add the div
elements to the container div element.
for (var j = 0; j < attributes.length; j++) {
var div = document.createElement(???div???);
div.appendChild(document.createTextNode(entry[attri
butes[j]]));
container.appendChild(div);
}
Copy the JavaScript application, listed below, to display the JSON
properties from the RSS Feed, to RSSAjax.html in JDeveloper.
Strict//EN??? ???http://www.w3.org/TR/xhtml1/DTD/xhtml1-
strict.dtd???>


content=???text/html; charset=utf-8???/>
Google AJAX Feed API - Simple<br>Example