I've successfully managed to pass information to a remote server using jQuery's ajax capability.
Simply add jQuery to your Gadget <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js'></script> and then you have full access to jQuery, including the .ajax method. For example: jQuery.ajax({ 'url': "http://example.com", 'data': dataToSend, 'dataType': "jsonp" }); Also there appears to be a method provided by Google for interacting with remote servers, but since jQuery worked I did not explore it any further. Documentation for it is here: http://code.google.com/apis/gadgets/docs/remote-content.html -- You received this message because you are subscribed to the Google Groups "Google Calendar Data API" 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://code.google.com/apis/calendar/community/forum.html
