document.getElementById('content') returns an element on your html  
page.  So I'm guessing that you're really looking for  
feed.entries.entry.content - i.e., the content of the feed entry.  In  
that case, you're not getting the full content of the feed because  
that's the way the AJAX Feed API is set up to work.  It only returns a  
snippet of the entry in the JSON format.  The good news is that you  
can work around this by getting the mixed format, which returns both  
JSON and the actual XML of the feed, which may well contain the full  
entries.  The bad news, however, is that you'll have to write your own  
controls to utilize it.

Jeremy R. Geerdes
Effective website design & development
Des Moines, IA

For more information or a project quote:
http://jgeerdes.home.mchsi.com
http://jgeerdes.blogspot.com
http://jgeerdes.wordpress.com
[email protected]

Unless otherwise noted, any price quotes contained within this  
communication are given in US dollars.

If you're in the Des Moines, IA, area, check out Debra Heights  
Wesleyan Church!

And check out my blog, Adventures in Web Development, at 
http://jgeerdes.blogspot.com 
  !


On Feb 12, 2009, at 4:09 PM, jt wrote:

>
> is there a way to have: getElementById("content"));
>
> return all lines of content rather than just one or two followed by
> "...."
>
> And asking another way - why doesn't getElementById("content"));
> return everything between content and forward slash content, coming
> from the feed source?
>
> is this inherent inside the API and can not be changed?
>
> >


--~--~---------~--~----~------------~-------~--~----~
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]
For more options, visit this group at 
http://groups.google.com/group/Google-AJAX-Search-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to