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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:18:50+00:00 2026-06-01T03:18:50+00:00

I have seen this example on the web: $(‘#questionTextArea’).each( function() { var $this =

  • 0

I have seen this example on the web:

$('#questionTextArea').each( function() {

    var $this = $(this);
    var $questionText = $("<textarea class='textAreaQuestion'></textarea>")
                   .attr('name',$this.attr('name'))
                   .attr('value',$this.val());

    $question.append($questionText);

    });

Where it says ‘.attr(‘name’,$this.attr(‘name’))’, what does that mean? Does that give the same ‘name’ attribute as the ‘id’ attribute #questionTextArea or the same ‘name’ as the ‘class’ attribute ‘textAreaQuestion’?

Thanks

  • 1 1 Answer
  • 2 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-06-01T03:18:51+00:00Added an answer on June 1, 2026 at 3:18 am

    This is assigning the name attribute on each newly created <textarea> to the name attribute of #questionTextArea.

    // Points $this to the current node the .each() is iterating on (#questionTextArea)
    var $this = $(this);
    
    // The name attribute of the current node .each() is iterating on
    $this.attr('name');
    

    Note that since it’s an id queried, there should only be one of these, and therefore the .each() loop is kind of unnecessary.
    The same thing could be accomplished with something like:

    var $questionText = $("<textarea class='textAreaQuestion'></textarea>")
       .attr('name', $('#questionTextArea').attr('name'))
       .attr('value', $('#questionTextArea').val());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please give me some examples of jump table usage. I have seen this example
I have not seen a really good example on the web. How can I
I have seen this ability over the web and I wasn't quite sure how
I have seen this question about deploying to WebSphere using the WAS ant tasks.
I have seen this for a long time, and finally decided to put the
I have seen this statement in many of the documention samples, like here This
I have seen this code documented in the tk docs, but I can't figure
I have seen this effect where when mouse is over an image, that image
I have seen this answer https://stackoverflow.com/a/9243472/563381 And while it works well visual as soon
I have seen this '[A' in a progress bar module but I can't figure

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.