Possible Duplicate:
Error changing html content with jQuery
What is wrong here? I want replace ul content with other content.
$('#carouselselectitem1').click(function() {
$('#foo2').html('<li><div id="lines"></div><div id="tittle">2 PROGRAMEO, LONDRES</div><div id="image"></div><div id="text">LOREM IPSUM XHTML+CSS3 HTTP://WWW.url.com/</div></li>');
});
My solution so far is:
$('#foo2').load("content1.html");
Another solution?