I know this is asked 1000x on this website but I cant get it to work.
I want to get the table information from this website with the current style: https://webuntis.a12.nl/WebUntis/?school=roc%20a12#Timetable?type=1&departmentId=0
So I tried this (fiddle here):
<div id="wrap"></div>
<script>
$.get('https://webuntis.a12.nl/WebUntis/?school=roc%20a12#Timetable?type=1&departmentId=0', function(data) {
var wrap = $('#mainTable', $(data));
});
</script>
But it wont do anything. Perhaps it can be done with PHP?