vote up 1 vote down star
1

Below is my full code, its basic, you select a country and it shows, or hides the correct form underneath, problem is it gives an error

"getState" is not define

Now I am a total noob at this but how do you debug these kind of errors?

<form method="post" name="form1"> 
   <select style="background-color: #ffffa0" name="country" onchange="getState(this.value)"> 
      <option>Select Country</option> 
      <option value="223">USA</option> 
      <option value="224">Canada</option> 
      <option value="225">England</option> 
      <option value="226">Ireland</option> 
   </select> 

   <select style="background-color: #ffffa0" name="state"> 
      <option>Select Country First</option> 
   </select> 

   <input type="text" name="othstate" value="" class="textBox" style="display: none;"> 
</form> 

<script> 
$(function() { 
    $('#country').change( function() { 
        var val = $(this).val(); 
        if (val == 223 || val == 224) { 
            $('#othstate').val('').hide(); 
            $.ajax({ 
               url: 'findState.php', 
               dataType: 'html', 
               data: { country : val }, 
               success: function(data) { 
                   $('#state').html( data ); 
               } 
            }); 
        } 
        else { 
           $('#state').val('').hide(); 
           $('#othstate').show(); 
        } 
    }); 
}); 
</script>

**UPDATED CODE PARTIALLY WORKING**

<script>
$(document).ready(function() {
   getState();
});

function getState() {
    $('#country').change( function() {         
        var val = $(this).val();
     if (val == 223) {
    	 $('#state').val('').show();
         $('#othstate').hide();
     }else {
        $('#state').val('').hide();
        $('#othstate').show();
     }
   });
 }
</script>

<form method="post" name="form1">
   <select style="background-color: #ffffa0" name="country" id="country">
      <option>Select Country</option>
      <option value="223" selected="selected">USA</option>
      <option value="224">Canada</option>
      <option value="225">England</option>
      <option value="226">Ireland</option>
   </select>
<div id="state">
   <select style="background-color: #ffffa0" name="state" id="state">
      <option>Select State</option>
      <option value="1">Florida</option>
      <option value="2">New York</option>
      <option value="3" selected="selected">Georgia</option>
      <option value="4">California</option>
   </select>
</div>
<div id="othstate"><input type="text" name="othstate" id="othstate" value="" class="textBox"></div>
</form>
flag

You may use firefox and web developer or firebug extensions to debug your javascript. – Ahmet KAKICI Jul 27 at 19:34

3 Answers

vote up 3 vote down check

You haven't named your function getState.... it doesn't know where to go to find the definition of the function "getState"!

also you have not set up your events correctly... should look like this:

<script>
$(document).ready(function() {
   getState();
});

function getState() {
    $('#country').change( function() {         
        var val = $(this).val();
        if (val == 223 || val == 224) {
         $('#othstate').val('').hide();
         $.ajax({
            url: 'findState.php',
            dataType: 'html',
            data: { country : val },
            success: function(data) {
                $('#state').html(data);
            }
         });
     }else {
        $('#state').val('').hide();
        $('#othstate').show();
     }
   });
 }
</script>

you may also need to remove the "onChange" from the select tag as the other poster mentioned. in jQuery, you don't actually set the events in the HTML (a benefit!), you just bind the events to elements based on their tag, id, or CSS class.

EDIT: I've noticed you're using name="country" instead of id="country" or class="country"... this will prevent you from making proper selections

link|flag
um... why the downvote? – Jason Jul 27 at 19:46
This is so misleading you should delete it immediately. And then slap yourself. – Josh Stodola Jul 27 at 19:47
how is this possibly misleading? – Jason Jul 27 at 19:47
1  
Because you are telling him to invoke his change event handler on page load! I don't even think you understand the question... – Josh Stodola Jul 27 at 20:01
Now you've edited it to fix the concerns, so I will remove the down-vote. Thank you. – Josh Stodola Jul 27 at 20:02
show 22 more comments
vote up 0 vote down

You should remove the call to getState in your select element. Also, I noticed that in your script you're referencing the names of the elements as if they are IDs. You should either change your name attributes to id attributes, or use selectors like "select[name='country']".

link|flag
do you mean to remove onchange="getState(this.value)" if so then how would the function be called, BTW I have switched to the code posted by Jason if that makes a difference however I still get errors – jasondavis Jul 27 at 20:39
@DLH: "name" has been depracated (or was IE specific, I forget which) and should be avoided. Use ID attributes or class names. – ScottSEA Jul 27 at 22:12
@jasondavis: Yeah I meant the onchange="getState(this.value)". The "$('#country').change(" handles the onchange event for you, and the function inside that runs every time the element with the id "country" fires a change event. @ScottSEA: I don't believe the name attribute is deprecated for the select element. w3.org/TR/xhtml1/#h-4.10 lists some elements for which it IS deprecated. – DLH Jul 28 at 14:35
vote up 3 vote down

I think you just need to remove the onchange="getState(this.value)" attribute from your select tag, since the getState JavaScript function is no longer needed/being used.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.