I have a problem. I am a beginer.I am curently struggling with get and print (or show in alert) data from another webside.
Am I on a good way?
$.ajax({
    url: "http://www.ogimet.com/cgi-bin/getsynop?begin=201511201200&state=Pol&lang=eng&block=12100",
    type: 'GET',
    success: function(res) {
        var text = res.responseText;
    }
});
alert(text);
Any idea? Ogimet provides a SYNOP data. Than I will want to parse it, but now Iam doing something wrong cos I cant get this data.
 
    