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

  • Home
  • SEARCH
  • 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 607429
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:21:33+00:00 2026-05-13T17:21:33+00:00

I have the following code and what I am trying to do is set

  • 0

I have the following code and what I am trying to do is set up an Autocomplete input box that when it is filled out, create another autocomplete input box underneath it.

  • The problem with my code is that
    since I am using blur, it will create
    a new input every time I click off of
    the first one.

  • The second problem is
    that I need to setup the autocomplete
    on the newly created input box, but
    if I do it recursively then it will
    crash.

Code:

function setupAutoComplete()
{
 var autoCompleteData = $("#listContacts").html().split("<br>");
 //autoCompleteData = replaceAll(autoCompleteData, "&lt;", "<");
 //autoCompleteData = replaceAll(autoCompleteData, "&gt;", ">");
 $("[name|=toemail[]]").autocomplete(autoCompleteData);
 $("[name|=toemail[]]").result(function(event, item) {
    $("[name|=toemail[]]").blur();
 });
 $("[name|=toemail[]]").blur(function(){
  var newString = $(this).val();
  newString = replaceAll(newString, "&lt;", "<");
  newString = replaceAll(newString, "&gt;", ">"); 
  $(this).val(newString);
  var newfield = '<p><label class="" disabled="true"><select name="toSelect[]"><option>To: </option><option>CC: </option><option>BCC: </option></select></label><input type="text" value="" name="toemail[]" /></p>';
  $("#composeTo").append(newfield);
 });
}
  • 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-13T17:21:33+00:00Added an answer on May 13, 2026 at 5:21 pm

    Posting my own solution.

    function setupAutoComplete()
    {
        var autoCompleteData = $("#listContacts").html().split("<br>");
    
    
    $("[name|=toemail[]]").each(function(key, value) {
        if (!($(this).hasClass("blurred")))
        {
        $(this).autocomplete(autoCompleteData);
        $(this).result(function(event, item) {
            var newString = $(this).val();
            newString = replaceAll(newString, "&lt;", "<");
            newString = replaceAll(newString, "&gt;", ">"); 
            $(this).val(newString);
            $(this).blur();
        });
        $(this).blur(function(){
            if (!($(this).hasClass("blurred")))
            {
            var newfield = '<p><label class="" disabled="true"><select name="toSelect[]"><option>To: </option><option>CC: </option><option>BCC: </option></select></label><input type="text" value="" name="toemail[]" /></p>';
            $("#composeTo").append(newfield);
            setupAutoComplete();
            $(this).addClass("blurred");
            }
        });
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am trying to set transparency of all windows. I have following code. public
I have a makefile with the following code. I'm trying to set a variable
I'm trying to use opengl in C#. I have following code which fails with
I have the following code, I'm trying to get a table with 4 columns
I am trying to use the following code, which I have not been able
I have the following bunch of code trying to update a field using 2
i have been trying to set a image on a button using the following
I have the following code in a custom user control that contains a DropDownList
I have following code structure, where i am trying to change the css file
In my cakephp form I have following code <p> <?php echo $form->input('option[]',array('size'=>13)); ?> </p>

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.