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 html instead of append:
$.get("banner.html", function(data){ $(this).children("div:first").html(data); });