Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8600869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:42:48+00:00 2026-06-12T01:42:48+00:00

I am dynamically building a <div> with child elements. One of the child elements

  • 0

I am dynamically building a <div> with child elements. One of the child elements is an image that I need to have a load event for. When I’m trying to .appendTo() the <div> the image is not being appended. I can see in firebug that each element (contentItem and $img) exist but not being appended.

var buildContentItem = function (src, caption, date, userName) {
    var contentItem =
        '<div class="contentItem">' +
            '<a href="javascript: void(0);"></a>' +
            '<div class="detailsWrapper">' +
                '<span class="date">' + date + ': </span>' +
                '<span class="userName">' + userName + '</span>' +
                '<div class="caption">' + caption + '</div>' +
            '</div>' +
        '</div>';

    var $img = $('<img>', {
        load: function () {
            console.log('loaded');
            images.push($.Deferred(function (promise) {
                promise.resolve();
            }).promise());
        }
    }).appendTo($(contentItem).find('a'));
    $img.attr('src', src).attr('alt', caption);

    return contentItem;
};
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T01:42:49+00:00Added an answer on June 12, 2026 at 1:42 am

    I was returning contentItem which was just a string. When I was appending $img to $(contentItem) it wasn’t making changes to the string. Here’s the fix…

    var buildContentItem = function (src, caption, date, userName) {
        var contentItem =
            '<div class="contentItem">' +
                '<a href="javascript: void(0);"></a>' +
                '<div class="detailsWrapper">' +
                    '<span class="date">' + date + ': </span>' +
                    '<span class="userName">' + userName + '</span>' +
                    '<div class="caption">' + caption + '</div>' +
                '</div>' +
            '</div>';
    
        var $img = $('<img>', {
            load: function () {
                console.log($(this).position().left);
                images.push($.Deferred(function (promise) {
                    promise.resolve();
                }).promise());
            }
        });
        // the fix below
        contentItem = $(contentItem).find('a').append($img).parent();
        $img.attr('src', src).attr('alt', caption);
    
        return $('<div>').append(contentItem.clone()).html();
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a stored procedure that is dynamically building a query. The where clause
I have long known that you can load style rules into a page dynamically
I'm dynamically building a WPF FlowDocument from a datasource. One of the data elements
I'm trying to evaluate an XPath varable I'm building dynamically based on the position
I'm building dynamic forms in GWT, but I'm not sure how to dynamically retrieve
I have a stream of JSON coming back and am building a table dynamically
I have a method that adds an image to a TD and attaches the
I'm building a site and I would like to have external content dynamically loaded
I'm not sure if I worded the question correctly. I am dynamically building a
I have two divs like so <div id=parent style=width:100px:overflow:hidden;> <div id=child> tooooooooooooooooooooo much content

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.