[jQuery] jqery.load missing html tags

[jQuery] jqery.load missing html tags


Hello,
im using .load to get a part of a html site into my div.
Problem:
For exapmle i have some markup like:

<strong>some text</strong>


When i load this content the

tag is closing befor of the strong
tag.
Looks like this:

<strong>some text</strong>
<script type="text/javascript">
$(document).ready(function(){
    $.ajaxSetup ({
    cache: false
    });
    $('li.leistung a').click(function(){
    $(".content").load("leistung.html .content *");
    return false;
    });
});
</script>
The document is valid!
Any idea? Thanks