Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created June 2, 2010 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinkphp/422150 to your computer and use it in GitHub Desktop.
Save thinkphp/422150 to your computer and use it in GitHub Desktop.
window.addEvent('domready',function(){
new Request.Weather('bucharest','c',{
onSuccess: function(o){
var title = '<p style="color: blue"><strong>'+o.query.results.weather.rss.channel.item.title+'</strong></p>',
description = o.query.results.weather.rss.channel.item.description;
$('weatherbadge').set('html',title+description);
}
}).send();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment