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 would like to select all inputs in my div and set them new value but also I want to exclude inputs with certain value something like this:

$('#mydiv input:not(val("100")').val(myvariable);

how to do that, is it possible in simple selector? thanks

share|improve this question

4 Answers

up vote 6 down vote accepted

You need to use the attribute not equal selector.

$('#mydiv input[value!="100"]').val(myvariable);

jsFiddle

share|improve this answer
+1 from me :-) Also here's the jquery docs with some more info: api.jquery.com/category/selectors/attribute-selectors – Alex Key Apr 12 '11 at 8:29
this works. thanks! – simPod Apr 12 '11 at 11:46
var n = jQuery("input[value!='1']").val();

alert(n);

check this link too

http://api.jquery.com/attribute-not-equal-selector/

share|improve this answer
$('#mydiv input:not([value="100"])').val(myvariable);

or

$('#mydiv input').filter(function() {
    return $(this).val() != 100;
}).val(myvar);
share|improve this answer

you can also use the each function.

$('#mydiv :input').each(function(){

    if($(this).val() != '100')
       $(this).val(myvariable);
});
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.