Hello,

im using .load to get a part of a html site into my div.
Problem:
For exapmle i have some markup like:
<p><strong>some text</strong></p>

When i load this content the <p> tag is closing befor of the strong
tag.
Looks like this: <p></p><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

Reply via email to