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