I\'m trying to append an external html content (div plus some text inside just for testing) this way:
$.get(\"banner.html\", function(data){ $(this).chil
Use selectors like CSS3
$("banner.html>div:first-child").append(data);