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'm trying to call the 'tariff' action of my 'countries' controller using jQuery ajax() and pass it a country name in the following format:

/countries/tariff/countryname

However, with the following code ( set to GET ), it is calling this with the get ? added:

/countries/tariff/?countryname

Here's the code:

$(document).ready(function(){
    $('#CountriesIndexForm select').change(function(){          
        $.ajax({
            type: "GET",

            url: "/countries/tariff/",

            data: escape($(this).val()),

            success: function(html){

                $(this).parent().next('div').html(html);

            }
        });
    }); 
});

I understand its because the type is set to GET, but is there a fix for this?

share|improve this question

3 Answers

up vote 7 down vote accepted

make url manually

url: "/countries/tariff/"+escape($(this).val())
share|improve this answer
DOH!!!!!!!!!!!!!!!!! – Pickledegg Jun 18 '09 at 9:44
by the way, thanks ;) – Pickledegg Jun 18 '09 at 9:50
I always make the urls manually. You know for sure how its going to work. – DMin Jun 9 '10 at 7:17

You need to append that to the url parameters and leave out data, i.e.:

url: "/countries/tariff/" + $(this).val(),
share|improve this answer

Pass the parameter directly in the url field instead of using data

$(document).ready(function(){    
   $('#CountriesIndexForm select').change(function(){                          
      $.ajax({                
          type: "GET",                
             url: "/countries/tariff/" + escape($(this).val()),                
             success: function(html){                        
                  $(this).parent().next('div').html(html);                
             }        
      });    
    }); 
});
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.