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.

I have a number of form text fields on a page. Each field has a unique numerical ID. How can i check what if the latest ID? For example, if I have 7 text fields, when i execute on click jQuery function I need to be able to know that the last ID was 7 in order to increment it.

share|improve this question

5 Answers

You can use .last()

share|improve this answer

You can use the :last selector like so:

$('.someClass') // All the elements
$('.someClass:last') // Just the last element

You can then simply query that object for it's Id.

share|improve this answer
1  
Or $('.someClass').last(). – Felix Kling Apr 18 '11 at 15:09
$('#foo').click(function() {
    var lastfieldsid = $('#fieldwrapperid input').last().attr('id');
    //do evil things here
});

I'd love to hear more about what you're trying to do here. Generally modifying unique ID attributes is not really necessary. If you need to store data in your DOM, use the html5-compliant attributes that follow the form data-something="someval". That way you're not modifying a core HTML attribute (ID) to do something that sounds kind of wonky.

<fieldset id="fieldwrapperid">
    <input type="text" data-someid="10" />
    <input type="text" data-someid="11" />
    <input type="text" data-someid="12" />
    etc
</fieldset>
share|improve this answer
I am adding cloning form field with jQuery but they all must have unique IDs for my code to work. – santa Apr 18 '11 at 15:18
Right, it's that dependency on them having a unique ID that I'm worried about. Yes, elements need to have unique IDs, but when you're dynamically adding elements and trying to reference them in this manner, you've likely got a design flaw that's making your life more difficult than it needs to be. Why do they need IDs at all? – Adam Terlson Apr 18 '11 at 15:21
$("input[type=text]:last").attr("id");

Should do the trick.

share|improve this answer

try $("form").find(":input[type=='text']").size()

share|improve this answer

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.