got similar results however if take out the "*" it works fine. The "*" is redundant since jQuery will look for all anyway


clicforw...@googlemail.com wrote:
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