Report abuse

1
2
3
4
5
6
7
8
9
function handle_pipe_response(json){
    //Do stuff
}

function getAnyRSS(url){
    var tag = document.createElement('script');
    tag.src = 'http://pipes.yahoo.com/pipes/pipe.run?_id=fFIyvvYg3BGZpVytjknRlg&_render=json&_callback=handle_pipe_response&_run=1&feedurl=' + escape(url);
    document.getElementsByTagName('head')[0].appendChild(tag);
}