Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I add another element to be evaluated by value to this statement?

if ($(this).val() == 1 && !$(this).data("priority1"))?

I'd like to use class as the selector for this new element (In this particular case class="complaint" and one of the values is "Too_small")

I've tried (both with & without brackets)

if ($('.complaint').val() === "Too_small" && $(this).val() == 1 && !$(this).data("priority1")) 

I've included the function below, and a fiddle with a working example http://jsfiddle.net/chayanyc/Dhaat/225/

var $priority1 = $(".priority1");
$(".features_rank1").change(function() {
    var name = $(this).data("name"); //get priority name
    if ($(this).val() == 1 && !$(this).data("priority1")) {
        //rank is 1, and not yet added to priority list
        $("<option>", {text:name, val:name}).appendTo($priority1);
        $(this).data("priority1", true); //flag as a priority item
    }
    if ($(this).data("priority1") && $(this).val() != 1) {
        //is in priority list, but now demoted
        $("option[value=" + name + "]", $priority1).remove();
        $(this).removeData("priority1"); //no longer a priority item
    }
});
share|improve this question
I don't know if I'm making a mistake here but, why use "===" instead of only "=="? – Gerard Diaz Nov 20 '12 at 18:45
2  
@GerardDiaz == does type coercion, typically you always want to use === in Javascript – mcpDESIGNS Nov 20 '12 at 18:47

1 Answer

up vote 1 down vote accepted

Try:

$(".complaint select").val()

You need the value of the select tag under the .complaint class.

However, you have two element with the class of .complaint, so you'll need to figure out which one you want.

share|improve this answer
@Matt_Burland - I hadn't thought about that ;-) Is there a way to assign one class to the element which contains each combination (of issue and ranking) and identify all 3 elements that way? In my actual code it's all in a table, and for most of the pairs they are in the same cell – Chaya Cooper Nov 21 '12 at 0:21
1  
@ChayaCooper: Assigning a something unique to an element is what id is for. So if you gave your first span the id shoulders and the second waist, then you could do $("#shoulders select").val() and $("#waist select").val() to select each one independently. – Matt Burland Nov 21 '12 at 1:11
@Matt_Burland - The code works perfectly :-D You were right about needing specify which one I want, but it's pretty cumbersome to do it with ID's since it requires a separate IF statement for each ID (and there are 20 functions like this with 15 ID's and 4 values). Can this be done with data-names and (this) statements the way it does for features_rank1? If you want to see this in context, I created a fiddle jsfiddle.net/chayacooper/gYtZw/22 – Chaya Cooper Nov 23 '12 at 3:11

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.