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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:27:24+00:00 2026-05-26T14:27:24+00:00

I am working within a site framework that I cannot modify. This framework adds

  • 0

I am working within a site framework that I cannot modify. This framework adds a textbox to the DOM at some point after document.ready(). I want to give this textbox focus.

jQuery’s live, delegate and on are inappropriate because they require an event as a trigger. I could not find an event equivalent to just adding the item to the page.

There is LiveQuery, but the framework does not allow me to load it.

Is there a way to simulate LiveQuery or a better alternative that somebody can think of? I would love to be able to do:

http://jsfiddle.net/psJmx/1/

$(document).ready(function() {
    //create an input in the future
    setTimeout('insertInput()', 1200);

    //give that input focus when it is added
    $('#foo').live('load', function() {
        $(this).focus();
    });
});

function insertInput() {
    $('body').append('<input type="text" value="new" id="foo" />');
}
  • 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-26T14:27:24+00:00Added an answer on May 26, 2026 at 2:27 pm

    As a note, I know that polling is a crappy way to do this, but I have constraints to work within. I have no control over the js that inserts the element and I can only use jQuery 1.4.2.

    I ended up relying on polling. This is how I chose to do it. I gave a max number of attempts and a reasonable poll time so that I am not bogging down the page. If the element doesn’t appear in the first three seconds I give up.

    //poll for appearance of element
    var attempts = 10;
    var pollTime = 300;
    modifyTree();
    
    function modifyTree() {
        if ($('#foo').length > 0) {
          //do something to foo
        }
        else { 
          //continue polling for element
          if (attempts--) { setTimeout('modifyTree()', pollTime);} }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working within another question on this site and have almost completed
I am working on implementing Zend Framework within an existing project that has a
I'm working on a site where we need dynamic breadcrumb generation. Pages within this
I'm working on a table of links within a site using iframes. I'm wondering
Is there some smart way to retreive the installation path when working within a
It seems to me that Response.Cache.SetVaryByCustom(mykey); is not working from within ASCX User Controls.
I have a fully working Setup project within Visual Studio 2008 that takes inputs
I have this site I am working on, it has the following menu items:
Within a site I am working on, the previous developer put together a very
I cannot do a simple commit (svn commit file.php) from within the working directory.

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.