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
You can use jquery's load function here.
$("#your_element_id").load("file_name.html");
If you need more info, here is the link.