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 7629943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:58:13+00:00 2026-05-31T05:58:13+00:00

I have a page which loads in magento. Since i have to do some

  • 0

I have a page which loads in magento. Since i have to do some quick fix, I need to check if a DIV has loaded. The is inserted using javascript.

div name: umm

using this: https://stackoverflow.com/a/4160706/1147634

var len = jQuery('#umm').append('<a href="#">hi</a>')
    .find('a')
    .load(function() {
        if( --len === 0) {
            alert('all are loaded');
        }
    }).length;

HTML inserted using javascript.

<input id="evtproducttype" type="hidden" value="activities">
<input type="button" onclick="addInputGroup('evt_detail','evt_detaildhtmlgoodies_tabView1','evt_detailtabtitle');" value="+ Add Activity">
<div id="umm"></div>
<div id="dynamicGroupControl"></div>

I have to wait until this divs are loaded.

This doesn’t work, and i my div is empty.

  • 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-05-31T05:58:15+00:00Added an answer on May 31, 2026 at 5:58 am

    Your code looks a good starting point – but why not do this :

    function addSomething() {
         $('#parentelement').append('<div>your contents</div>');
         // append is immediate - so you can now do your next step !
    }
    

    Things to note – the append function adds the element to a parent – so you need to select the correct parent. Once the append is complete you can do your next step. To call your addition just call the function addSomething()

    Updated

    You have 2 options ….

    Option 1 … change your onclick :

    onclick="addInputGroup('evt_detail','evt_detaildhtmlgoodies_tabView1','evt_detailtabtitle'); addSomething();"
    

    this calls the addSomething function after your addInputGroup function

    Option 2 … Change your function :

    function addInputGroup(arg1,arg2,arg3) {
      // do your normal stuff
      addSomething(); // or add the actual code here
    }
    

    The second option means its easier to modify every call to the function

    Updated again

    The only real option you have is to actual call a function when your div is loaded … you can use the livequery plugin for that – this will trigger a function when the div is actually finished loading :

    $('#umm').livequery(function(){ 
      // the div has not loaded
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a page which loads divs of rounded corners. And on each div
I have this page which has tabs. Content in say, tab 1 loads as
I have a simple webview which loads a page. This page has a few
I have small page which has label, DropDownList and a submit button. <div> <asp:label
I have this page which loads quotes. It has a search form wherein if
I have a page which dynamically loads a section of content via AJAX. I'm
I have a page (main.php) which loads content from an external PHP file (rpc.php).
I have an ASP page which displays a text box when it loads. It
I have a flash page which takes quite some time to load, but I
I have a page which has several independent sections. Data is to be populated

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.