Thursday, October 29, 2009

[jQuery] load() not loading

I need to load a few lines of HTML to my page. I made a test
"receiver" page.

<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/
ajax/libs/jquery/1.3.2/jquery.min.js
"></script>
</head>
<body>

<script type="text/javascript">
$(document).ready(function(){
$("div#events").load("http://ajtak.heroku.com/events.data");
});
</script>

<div id="events">

</div>

</body>
</html>

I don't get it. If I try to load local HTML, ot works just perfect.
But if try to load ie. http://google.com I get "400 Bad Request", or
when I try http://ajtak.heroku.com/events.data I get "404 Not Found".

So what's wrong? I'm pretty new to jQuery and all this AJAX stuff...

Thank you for any answers :)

No comments: