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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:23:54+00:00 2026-05-14T23:23:54+00:00

I having problem with append() when the textbox is focus the second time. var

  • 0

I having problem with append() when the textbox is focus the second time.

var i = 1;    
$('textarea').live('focusin', function(){               
        $(this).keydown(function(e){
               var code = e.which;
            if(code === 13) { 
                i++;
                $('#linenumbers').append('<li>' + i + '</li>');}
    });

This code will append on

  • tag for each number, 2,3,4,5 (the first li is allread added, that why i=1) But when the user focus out and then focus in again it add two li foreache keydown,
    6 and 7 = first keydown
    8 and 9 = second keydown

    third focus it add 3 numbers, and so on..

    How can i check that i just add one li each time you hit enter.

    Hope you get the problem!

    Edit, the html:

    <ul id="linenumbers">
    </ul>
    
    <textarea></textarea>
    

    when i hit the enter but i get a new line in textarea then it should be two li in linenumbers.

    • 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-14T23:23:55+00:00Added an answer on May 14, 2026 at 11:23 pm

      The main problem is that you add another keydown event handler each time focusin fires. Try this:

      $('textarea').live("keydown", function(e){
          var code = e.which;
          if(code === 13) { 
              var prevIndex = parseInt($('#linenumbers li:last').text());
              $('#linenumbers').append('<li>' + prevIndex++ + '</li>');
          }
      });
      

      ​

      • 0
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
        • Report

    Sidebar

    Related Questions

    Im having a strange problem with the following code: function getTrxData(trx,inputPar,outputPar,callback) { var retorno
    I'm having a problem with this jQuery function, the portion of the function that
    I am having a problem with a block of my code, this section creates
    This is follow up post where I'm having a problem where my php code
    Im having problem in my UIscrollView ,this is what I have done: Whenever a
    I am having problem to get a numerical value for this expression where I
    I'm having problem with datagrid view. I have attached an image with the code
    I am having problem with drawing multiple lines during repaint. The code is as
    hello I am having problem related to https:// . I have used FB.getLoginStatus(function(response) function
    I'm having a problem of losing session variable on my website. It append at

    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.