I'm writing a gadget with tabs. I'm using addDynamicTab to create the
tab and add dynamic content via callback function:

tabs.addDynamicTab("Test1", test1);


function test1(tabId) {

_IG_FetchContent('http://Url.com', function (responseText)

{
testo=responseText;
_gel(tabId).innerHTML = testo;
}
);
}

Now I would like to update the content in Tab Test1, suppose with a
Ulr2.com. How can I add new content in tab Test1 fetching it from a
url2.com page?

Thank you for your help.

--

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