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 create a interface with a conditional logic that will allow the webmaster to insert advertisments anywhere on the site. But before coding it, I need some advices from you :)

The forms are handled trough jquery & ajax. When the "add another ad" button is pressed a new form is created with jQuery. My question is how could I gather all the form input values into a single hidden input that would look like:

<input name="ad[]" type="hidden" value="homepage,after_article,4,visitors" />

I think this value would be easier for me to handle in PHP.

enter image description here

share|improve this question
mm.. wouldnt you need the key of the field with the value? i mean, instead of homepage,after_article,4,visitors wouldnt be better foo:homepage,bar:after_article,n:4,baz:visitors? – Strae Jan 29 '11 at 17:44
yes, it would probably be a good idea to include the key too. How do I do that? – Alex Jan 29 '11 at 17:47
you might find code review useful. – greatwolf Jan 30 '11 at 10:36

2 Answers

up vote 2 down vote accepted

You could use the following to gather all the values:

var values = $('#yourformId :input').map(function() {
    return $(this).val();
}).toArray().join(',');

and then set the value of your hidden field:

$('#ad').val(values);

And you can see it in action here.

share|improve this answer
thank you, I'll try it :P – Alex Jan 29 '11 at 17:41

You could also do:

var values = $('#yourformId').serialize();
$('#ad').val(values);

jQuery's form.serialize function

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.