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.
    $(':input').blur(function () {
            $(this).css('border', 'solid 1px #ccc');
            // Check if last input and do line below
            //if(condition if $(this) is last element)
            //   $('#someOtherId').focus();
        });

In the code above, how to know id $(this) is last input of all selected input?

share|improve this question
Is it possible to do [-1] or am I thinking of something else? – SomeKittens Jun 18 '12 at 15:48

3 Answers

up vote 2 down vote accepted

Try this:

$(':input').blur(function() {
    if ($('input:last').is(this)) {
        // do something with last
        $(this).css('color', 'red');
    }
    $(this).css('border', 'solid 1px #ccc');
});

Working Sample

share|improve this answer
I haven't tested yet, but wouldn't that always be true since $(this) matches a single element in this case? – Kevin B Jun 18 '12 at 15:51
That's better, +1 – Kevin B Jun 18 '12 at 15:55
@KevinB thanks. – thecodeparadox Jun 18 '12 at 15:56
Cool way of thinking – eomeroff Jun 18 '12 at 17:56

Try like below,

var $input = $(':input');
$input.blur(function () {
    $(this).css('border', 'solid 1px #ccc');
    // Check if last input and do line below
    if ($input.index(this) == $input.length - 1) {
         //$('#someOtherId').focus();
    }
});

DEMO: http://jsfiddle.net/skram/eYZU5/3/

share|improve this answer
This is the most efficient of the answers if you're going 100% client side. The ones using :last (including mine) don't seem to work as far as I can tell on jsfiddle. Another alternative is to just give the last element a certain id on the server side and check for that. – Milimetric Jun 18 '12 at 15:56
I can break it though: jsfiddle.net/eYZU5/1 try adding a selector to .index() jsfiddle.net/eYZU5/2 – Kevin B Jun 18 '12 at 15:57
@KevinB Oh nice.. thanks though.. See updated patch :) Edit: I just did $input.index(this) added context so it would get index in $input. – Vega Jun 18 '12 at 15:59

I'm not exactly sure what you mean by "all selected input", but you can do a quick check by using .is() and the :last selector.

$(':input').blur(function () {

    var _this = $(this);

    if (_this.is(':last')) {
        // do something
    }

});

You might also want to look at :last-child, if that fits your requirements better.

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.