[jQuery] load() problems in IE
I saw a similar post to this a few days ago, but the solutions
presented aren't solving my problem.
Here's the problem.
I'm loading the output of a PHP file using $('element').load():
<code>
$('#sportsinsider').load('/zincludes/08/blogbox/sports.php');
</code>
This works fine fine FF, Safari and Opera. IE however chops off the
first portion of the response text. The full response is being
returned, I checked this by using a generic callback to load() and
putting the responseText into an alert. All tags are closed as well.
So now I'm baffled.
The HTML should look something like this:
<code>
<div class="blogTitle headline">
<a href="http://some.link.com">some link text</a>
</div>
<div class="by-index">
some text
</div>
<div class="latestPost">
some more text ....<a href="another.link">Read More</a>
</div>
</code>
IE however is only displaying the last div.