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 lots of boxes. I want to add a field of checkbox as the values come from a php file via Ajax call. How to handle a form within another form?

<form action="result.php" method="post">
<input ...

-------Inner form (imaginary form to perform Ajax call)
TYPE YOUR COUNTRY AND POPULATE CITY
(here user types a country and we populate cities from city.php?q=typed-country. 
City will return by the output of city.php file. In other words, output of 
city.php is exactly list of cities, which can be formatted with required 
CHECKBOX codes)
List of cities as CHECKBOX; e.g.
<input type="checkbox" name="city" value="city1" />
<input type="checkbox" name="city" value="city2" />
<input type="checkbox" name="city" value="city3" />
--------

<input type="submit" value="Submit" />
</form>

There are example of two select field for capturing cities for selected country; but here I need TYPE INPUT for country and CHECKBOX for resulting cities.

share|improve this question
1  
You've got to tell us how you're returning the list of cities. Give a sample output. Also, I think you mean city.php?q=typed-country – Amaan Cheval Oct 21 '11 at 16:07
@Amaan you were right about the typo. The php part is not my problem, I can handle it in any way needed; my problem is related to javascript part. I exampled further. – All Oct 21 '11 at 16:11
I don't quite get the last sentence. You get the country using a select element and you want to show the user the returned cities using checkboxes. Is that correct? And as Derek says, your HTML seems wrong. You cannot have an 'inner form.' You don't need the inner form since you're using AJAX. – Amaan Cheval Oct 21 '11 at 16:18
No Select! Users type the country (a text input form), and the list of cities will be provided to them as checkbox list. – All Oct 21 '11 at 16:23
Alright. I have answered your question assuming you will return the cities separated by commas, and you have a div with the id citiesListContainer where you want to display your checkboxes. – Amaan Cheval Oct 21 '11 at 16:42

3 Answers

up vote 1 down vote accepted
var ajax = new XMLHttpRequest();
ajax.open('GET','cities.php?q='+document.getElementById('country').value,true);
ajax.send();
citiesList = new Array();
ajax.onreadystatechange = function(){
    if(ajax.readyState == 4){
        citiesList = ajax.responseText.split(',');
    }
}
for(var i=0;i<citiesList.length;i++){
document.getElementById('citiesListContainer').innerHTML+='<input type="checkbox" value="'+citiesList[i]+'" /> '+citiesList[i]+'<br>';
}

Use the above code where your query returns a list of cities, with each city being separated by a comma. In your HTML, you have a div, with the id citiesListContainer. You could also use the appendChild method to add each individual checkbox, but mine is the lazy man's answer. Demo

share|improve this answer

You can't have a form inside of a form. You can make the entire form submit (and just use necessary data) or separate the two forms.

share|improve this answer
No it's just explaining the issue. Because I cannot have a form inside another form, I am asking how can I provide a list of checkboxes within my form came from an Ajax call. – All Oct 21 '11 at 16:22

use .change on the country

$("#country").change(function () {    
    $("select option:selected").each(function () {        
        var value = $(this).value()
        ajax to your php, return info you need
            modify/build your city information
    });    
})

that would example would be for a select box, however the principle of using .change would be the same for any type, though you wouldn't need the select option:selected.each bit

share|improve this answer
There's no [jQuery] – genesis Oct 21 '11 at 16:36

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.