I would appreciate it a lot if you guys could help me out with this problem.
I'm trying to read the JSON from this URL: https://aixtra.klinikum.rwth-aachen.de/rest_index.php but I only get an 'undefined' error. I'm able to read this JSON in the Google ARC Plugin and I can read other JSONs from other URLs with my code so I don't understand where the problem is.
This is my code:
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script type="text/javascript">
    $(function() {
      $.getJSON("https://aixtra.klinikum.rwth-aachen.de/rest_index.php", function(response) {
        $.each(response.data, function(index, d) {
          $("#print_kurse").append("Datum: " + d.TERMIN + ", Kurs: " + d.kurs + ", von: " + d.von + ", bis: " + d.bis + "</br>");
        });
      }).error(function(jqXHR, textStatus, errorThrown) {
        alert("Error: " + jqXHR.responseText);
      });
    });
    </script>
    <div id="print_kurse"></div>
Any Ideas? Would appretiate it a lot!
 
    