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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T02:20:53+00:00 2026-06-01T02:20:53+00:00

I have this code : http://jsfiddle.net/VAkLn/6/ When i add a table : http://jsfiddle.net/VAkLn/7/ this

  • 0

I have this code :

http://jsfiddle.net/VAkLn/6/

When i add a table :
http://jsfiddle.net/VAkLn/7/
this stop working.
Why?

Solved:

I change This:
price = self.next(“.price”),
To:
price = $(“.price”),

  • 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-06-01T02:20:54+00:00Added an answer on June 1, 2026 at 2:20 am

    The reason your first example works is because tr and td elements are only valid in a table element. The browser effectively strips out those invalid tags in the DOM which leaves you with a structure similar to:

    <body>
        <input type="input" size="3" class="qta">
        <input type="input" size="7" class="price">
        TOTALE: <input type="input" id="total" size="7" ;="">
    </body>
    

    Check it out in Firebug or Webkit Inspector.

    The next() selector works here because input.price is the immediately following sibling of each element in the set of matched elements.

    As soon as you include a wrapping table element, the tr and td elements are valid in the structure and get placed in the DOM as you would expect:

    <body>
        <table width="520" border="0" align="center" cellpadding="3" cellspacing="0">
            <tbody>
                <tr>
                    <td width="40" bgcolor="#009966" class="whyte">
                        <input type="input" size="3" class="qta">
                    </td>
                    <td width="100" bgcolor="#009966" class="whyte">
                        <input type="input" size="7" class="price">
                    </td>
                </tr>
            </tbody>
        </table>
        TOTALE: <input type="input" id="total" size="7" ;="">
    </body>
    

    This breaks the next() selector because input.price is no longer the immediately following sibling of each element in the set of matched elements.

    The solution is to modify your jQuery selector for input.price to navigate the new structure:

    price = self.parents('tr').find(".price"),
    

    Updated your fiddle.

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

Sidebar

Related Questions

I have this code: http://jsfiddle.net/gk5pV/8/ It's function is to add a td value to
I have this code I'm working on, see link: http://jsfiddle.net/PqsAD/3/ The problem is depending
I have this code: http://jsfiddle.net/bUPWS/1/ but #div2 overflows #div1. How to bring the overflowed
All of this is code is here: http://jsfiddle.net/yrgK8/ I have a news section which
I have the following code: http://jsfiddle.net/SPWWx/ I'm completely new to javascript, this is my
I have this code: http://jsfiddle.net/AH4As/3/ It works in the fiddle, but on my site,
I have this code : http://jsfiddle.net/Qchmqs/BSKrG/ <div class=step><-- this is darned wrong <div id=step2><a>Darn</a></div>
I have this code here http://jsfiddle.net/RzBeM/65/ you will see two input fields called quantity.
i have this simple code http://jsfiddle.net/U4Fj9/ the index of the visible image is always
I have this code : http://jsfiddle.net/snowman/xJyS3/ There is a extra margin bellow the image

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.