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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:16:17+00:00 2026-05-26T22:16:17+00:00

This code feels very repetitive, and I am sure there is a more efficient

  • 0

This code feels very repetitive, and I am sure there is a more efficient way to write it. Any help would be much appreciated.

jQuery:

$(function(){

      $('.perry_1_txt').keyup(function(){
         $('.perry_1').text($(this).val());
      });

      $('.perry_2_txt').keyup(function(){
         $('.perry_2').text($(this).val());
      });

      $('.perry_3_txt').keyup(function(){
         $('.perry_3').text($(this).val());
      });

      $('.perry_4_txt').keyup(function(){
         $('.perry_4').text($(this).val());
      });

      $('.perry_5_txt').keyup(function(){
         $('.perry_5').text($(this).val());
      });

      $('.perry_6_txt').keyup(function(){
         $('.perry_6').text($(this).val());
      });     

});

HTML:

<div>
<input class="perry_1_txt" /><span class="perry_1"></span>
<input class="perry_2_txt" /><span class="perry_2"></span>
<input class="perry_3_txt" /><span class="perry_3"></span>
<input class="perry_4_txt" /><span class="perry_4"></span>
<input class="perry_5_txt" /><span class="perry_5"></span>
<input class="perry_6_txt" /><span class="perry_6"></span>
<input class="perry_7_txt" /><span class="perry_7"></span>
</div>

The code dynamically takes the value from the inputs and places them in the corresponding span. It works fine, but it less than elegant.

  • 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-26T22:16:17+00:00Added an answer on May 26, 2026 at 10:16 pm

    Use fewer class names, and store the index somewhere else.

    HTML

    <input class="perry_txt" data-index="1"/>
    <input class="perry_txt" data-index="2"/>
    <input class="perry_txt" data-index="3"/>
    <!-- etc. -->
    

    JavaScript

    $(function ()
    {
        $('.perry_txt').keyup(function ()
        {
            var $this = $(this),
                i = $this.data('index');
    
            $('.perry_' + i).text($this.val());
        });
    });
    

    Edit

    Okay, so you’ve shown some HTML. We can do even better, and don’t need a single class name:

    HTML

    <div id="parent">
        <input /><span></span>
        <input /><span></span>
        <input /><span></span>
        <input /><span></span>
        <input /><span></span>
        <input /><span></span>
        <input /><span></span>
    </div>
    

    JavaScript

    $(function ()
    {
        $('#parent').on('keyup', 'input', function ()
        {
            var $this = $(this);
            $this.next().text($this.val());
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This feels like the kind of code that only fails in-situ, but I will
This code works (C# 3) double d; if(d == (double)(int)d) ...; Is there a
This code does not seem to compile, I just need to write something to
This code is executed by many way. When it's executed by the form button
I'm sure this is a very simple question, but I'm just a newbie so...
Is there any language which has a form of code templating? Let me explain
I'm hoping there will be a crazy linq answer to this, it feels like
This code in JS gives me a popup saying i think null is a
This code is from Prototype.js . I've looked at probably 20 different tutorials, and
this code always returns 0 in PHP 5.2.5 for microseconds: <?php $dt = new

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.