I have two VERY simple functions that pulse out to a URL, grab the
contents there and show them on the page :

function get_contacts(){
  _IG_FetchContent("http://grouppoint.freehostia.com/cc_gadget/
get_contacts.php?pageaction=GETCONTACTS",   get_contacts_return);
}
function get_contacts_return(data){
alert(data);
_gel("results").innerHTML = data;
}

I have the alert function just to show me that I am getting something
back from the URL (It's debug code in other words). I know the site
works (Right now it just sends back one word "Contacts") since I can
go to it in the browser proper. I know that the _IG_FetchContent
function can work with that site since other pieces of code work very
happily with it... But this code will not return anything - every time
it returns it is completely blank - not even an error is returned....

Does anyone have any idea what i am doing wrong here?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iGoogle Developer Forum" 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-Gadgets-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to