36

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).children("div:first").append(data);
});

That seems to be pretty simple... but it does not seem to work. Any idea? Thanks!

1
  • 1
    What is your $(this)? and you can try jquery load, not get. Commented Nov 26, 2011 at 9:29

5 Answers 5

61

Use html instead of append:

$.get("banner.html", function(data){
    $(this).children("div:first").html(data);
});
Sign up to request clarification or add additional context in comments.

Comments

14

i'm not sure what you're expecting this to refer to in your example.. here's an alternative method:

<html>
    <head>
        <script src="http://code.jquery.com/jquery-1.6.4.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(function () {
                $.get("banner.html", function (data) {
                    $("#appendToThis").append(data);
                });
            });
        </script>
    </head>
    <body>
        <div id="appendToThis"></div>
    </body>
</html>

Comments

3

You can use jquery's load function here.

$("#your_element_id").load("file_name.html");

If you need more info, here is the link.

Comments

0
<html>
    <head>
        <script src="http://code.jquery.com/jquery-1.6.4.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(function () {
                $.get("banner.html", function (data) {
                    $("#appendToThis").append(data);
                });
            });
        </script>
    </head>
    <body>
        <div id="appendToThis"></div>
    </body>
</html>

Comments

0

Use selectors like CSS3

$("banner.html>div:first-child").append(data);

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.