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 have a form with a country select. The form should be extended with new input fields depending on the selected country.

Most of the tutorials i found on google are for ajax submits after filling a forum.

Can somebody recommend a tutorial/howto on howto extend a form via ajax on a select change?

share|improve this question
google 'railscast dynamic form', there are several railscasts that deal with this. – RadBrad May 2 '12 at 15:37

1 Answer

up vote 0 down vote accepted

Use something like this. Of cousre url, country_data, and custom_part must be handled according your app. And the returned data comes from your app, better without layout, only the part what you want to add.

$.get("url", country_data, function(returned_data){ $(".custom_part").html(returned_data) })
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.