Guest User

Untitled

a guest
May 27th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. window.addEvent('domready',function(){
  2. new Request.Weather('bucharest','c',{
  3. onSuccess: function(o){
  4. var title = '<p style="color: blue"><strong>'+o.query.results.weather.rss.channel.item.title+'</strong></p>',
  5. description = o.query.results.weather.rss.channel.item.description;
  6. $('weatherbadge').set('html',title+description);
  7. }
  8. }).send();
  9. });
Add Comment
Please, Sign In to add comment