I'm having a problem getting the data to return. Not sure where I've gone wrong as I can access the data in the google table just fine but I get the above error when I run a simple test. When I trace it, gdata is false at the point it is failing, but pub.parsed is true. Have I missed something obvious?
Phoebe.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script src="./js/tableconn.js"></script>
</head>
<body>
<script type="text/javascript">
TC.load ({
url: "https://docs.google.com/spreadsheet/pub?key=0AmBd5cxjATZ9dG5ZZlRhTnhqdFJieWZ0eV9fNC1lN2c&output=csv"
}, function (csv) {
alert('hurragh');
});
</script>
</body>
</html>