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 looked around here and found nothing so I'll ask it here. How do I check if a certain option is selected in a <select> box?

Here's what I have so far and doesn't work:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="imagetoolbar" content="no" />
    <title>FancyBox 1.3.4 | Demonstration</title>
    <script type="text/javascript" src="jquery-1.5.1.min.js"></script>
    <script type="text/javascript" src="scripts/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
    <script type="text/javascript" src="scripts/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
    <link rel="stylesheet" type="text/css" href="scripts/fancybox/jquery.fancybox-1.3.4.css" media="screen" />

    <link rel="stylesheet" href="style.css" />
    <script type="text/javascript">
        $(document).ready(function() {

            $("#various1").fancybox({
        'transitionIn'   :  'fade',
        'transitionOut'  :  'fade',
        'speedIn'        :  300, 
        'height': '300',
        'width': '300',
        'speedOut'       :  300, 
                'opacity'       : true,
                'centerOnScroll': true,
                'autoDimensions': false
            });

        });
    </script>

    <style>
    * {
margin: 0;
padding: 0;
}
    .header {
background:#789FCC;
color:#fff;
font:16px verdana;
font-weight:700;
padding:5px;
margin-bottom:10px;
}
    h3 {
        font-weight: bold;
        font-size: 17px;
        display: block;
         padding:5px;     
    }
    #inline1 {
        padding:0;
        margin:0;  
        font:12px verdana;  
    }    
  #note {
    display:none;
  }
    </style>
    <script type="text/javascript"> 
$(document).ready(function() {

 if ($("#test_now option[value='3']:selected")) {
    alert('Testing');
    $("#note").toggle();
  }

</script>
</head>
<body>

    <a id="various1" href="#inline1">Report Answer</a>


<div style="margin:0;padding:0;display:none;">
<div id="inline1" style="padding:0;marging-top:10px;">

<div class="header"><h3>Testing</h3></div>

Submit this form:

<form method="post" action="x.html">
<select id="test_now" name="why">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
<option value="4">Four</option>
<option value="5">Five</option>
</select>

<br />

<div id="note"><textarea rows="5" cols="20"></textarea></div> 
</form>

</div>  
</div>


</body>
</html>
share|improve this question

4 Answers

up vote 1 down vote accepted
$("#test_now").change(function(){
    var i = $(this).val();
    if(i == "5"){
        console.log("...1");
    }

    //But if you had a dynamically populated select...
    //you could give an option a special ID..and check for that
    if($("#specialOp", this).is(":selected")){
        console.log("...2");
    }

    //or even check for the text in an option
    if($(":contains('Five')", this).is(":selected")){
        console.log("...3");
    }
});

http://jsfiddle.net/G7pB2/

share|improve this answer
Thanks! This worked. :) – weka Mar 26 '11 at 15:43
var selectedValue = $('#test_now').val();
if (selectedValue == '3') {
    // The option 3 is selected
}

But because you are putting this test directly inside document ready probably the first option will be preselected unless you explicitly modify your markup to preselect a specific option:

<select id="test_now" name="why">
    <option value="1">One</option>
    <option value="2">Two</option>
    <option value="3" selected="selected">Three</option>
    <option value="4">Four</option>
    <option value="5">Five</option>
</select>
share|improve this answer
Sorry to say but I put a alert('Testing'); in between the IF statement and it didn't work. :( – weka Mar 26 '11 at 14:56
Not even this $("#test_now").live("click",function(){ worked... – weka Mar 26 '11 at 14:59
Aha! I got it! Here's what I used: pastebin.com/K21L1rpR Since you lead me to the answer -- thanks! :D – weka Mar 26 '11 at 15:02
Wait... nevermind.. it still seems to toggle on and off even when I don't press 3. Ugh. Thanks anwyay. – weka Mar 26 '11 at 15:04

$('#test_now').change(function() {
   if($(this).attr('value') != 0) {
     //Some option has been selected
   }
});

It doesn't matter what option has been selected.

<select id="test_now" name="why">
   <option value="0">Select a 'Wh' question</option>  
   <option value="1">One</option>
   <option value="2">Two</option>  
   <option value="3">Three</option>  
   <option value="4">Four</option>  
   <option value="5">Five</option>  
</select>
share|improve this answer

You may also use the jQuery selector to get the selected element, perhaps this code snippet will help.

$('#test_now').change(function() {

    // not using the object context for clarity
    var selected_option = $('#test_now option:selected');

    if (selected_option.size() == 0) {
        // no option was selected, how was the change event fired?
    }

    // do what ever you want with selected_option here
}
share|improve this answer
Keep in mind that if your final JavaScript code contains a call to console.log(), which is not present in IE or none Firebugged Firefox, then your page will break. JavaScript execution will stop once you reference the non-existent console. – macguru2000 Mar 26 '11 at 16:01

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.