Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my code snippet:

   <div class="totals">
            <table id="shopping-cart-totals-table">
        <col />
        <col width="1" />
        <tfoot>
            <tr>
        <td style="" class="a-right" colspan="1">

            <strong>Grand Total</strong>
        </td>
        <td style="" class="a-right">
            <strong><span class="price">$364.99</span></strong>
        </td>
    </tr>
        </tfoot>
        <tbody>

            <tr>
        <td style="" class="a-right" colspan="1">
            Subtotal    </td>
        <td style="" class="a-right">
            <span class="price">$354.99</span>    </td>
    </tr>
    <tr>
        <td style="" class="a-right" colspan="1">

            Shipping & Handling (Flat Rate - Fixed)    </td>
        <td style="" class="a-right">
            <span class="price">$10.00</span>    </td>
    </tr>
        </tbody>
    </table>

How would I use jQuery to select the first span of class "price" and assign the "$364.99" text within that tag to a variable?

share|improve this question

3 Answers

up vote 3 down vote accepted
var total = $('.price:first').text();
share|improve this answer

You can do like this:

var price = $('span.price').first().text();

Or any of these:

var price = $('span.price:first').text();
var price = $('span.price:eq(0)').text();
var price = $('span.price').eq(0).text();
var price = $($('span.price').get(0)).text();
var price = $($('span.price').get()[0]).text();
share|improve this answer
jQuery's get returns the DOM object, which doesn't have a text() function. – a'r Mar 7 '11 at 17:56
@a'r: Right, it does. I kept the examples with an added wrapper although they get a bit convoluted, just to show the different ways of accessing elements. – Guffa Mar 7 '11 at 18:07
Thank you for the response Guffa - great ideas, however to be fair a'r was the first one to respond to my specific inquiry, so I chose his response as the solution. – nicktendo Mar 7 '11 at 18:10
@user589294: Well, I did actually answer 19 seconds before him... ;) – Guffa Mar 7 '11 at 18:19
Huh, how can you tell that? – nicktendo Mar 7 '11 at 22:27
show 1 more comment

To get the text

$(".price").eq(0).text()

To set the text

$(".price").eq(0).text('12.21$')
share|improve this answer
jQuery's get returns the DOM object, which doesn't have a text() function. – a'r Mar 7 '11 at 16:53
You are so right!! Use eq instead. – Aliostad Mar 7 '11 at 16:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.