Hi
I'm trying to load the content of a div from one html page to another. It works in FireFox and IE but not in Chrome. I used the following in the Head:
<script src="js/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function(){
$('#timetable').load('workout.html #printview');
})
</script>
It grabs the DIV 'printview' from the 'workout.html' page and places it in the DIV 'timetable'
<div id="timetable"></div>
Can anybody see why it won't show up in Chrome?
Thanks for your help
Emmet