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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:33:36+00:00 2026-05-27T15:33:36+00:00

How can i get the text from a span that precedes an text input

  • 0

How can i get the text from a span that precedes an text input and when that input gains focus get the span of the focused input? lets say that the inputs are like this:

<div>
<label for="id">...</label>
<input type="text" id="id" value="" />
<span class="span">span</span>
</div>

is there a way to get the value maybe something like this:

$('#id').live('focus', function(){
var text = $(this, '.span').text();
});

I do a live binding because the inputs are dynamically created
i’ve also tried something like this but does not seem to work:

var text = $(this).find('.span').text();

thank you in advance!

  • 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-27T15:33:37+00:00Added an answer on May 27, 2026 at 3:33 pm

    You mean a span that succeeds your input? That’s how your html is structured.

    I think this is what you’re looking for

    $('#id').live('focus', function(){
       var text = $(this).siblings("span:first").text();
    });
    

    Or if you’re 100% certain that the span will always be right next to the input, you could do

    $('#id').live('focus', function(){
       var text = $(this).next().text();
    });
    

    But if you really do want the span that comes immediately before your input, you could use the prev function:

    $('#id').live('focus', function(){
       var text = $(this).prev("span").text();
    });
    

    Finally, note that live is deprecated. Normally I’d recommend switching to on, but since you’re just selecting a single element by id, why not simply do:

    $('#id').focus(function() {
       var text = $(this).prev("span").text();
    });
    

    Or to make this more general, and able to work with any input

    $(document).on("focus", "input[type='text']", function() {
       var text = $(this).prev("span").text();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I get the text value from an elements's child? Say I have
How can I get the selected text (not the selected value) from a drop-down
How can you get the height of the Text component that's been created dynamically
From below HTML code I want to get all the text except that in
I have html that looks like this, <div> <span>Text <a href=example.html>ABC</a> <a href=example.html>DEF</a> <a
I need to get the text that is inside a element. I can only
I'm trying to get the previous tag from $('#marker').prevAll(span.curPos:eq(1)); Problem is that the HTML
Hi i want to get changed text value from JQuery but i can't select
How can I get the text value of a segment in a UISegmentedControl?
I have a database which is in Access (you can get it link text

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.