ebody: jQuery serializeArray() funktioniert nicht

Beitrag lesen

Man muss den <input> Feldern das Attribut Name hinzufügen. Jetzt funktioniert es.

<form id="form_data">
  <input type="text" id="ch1" value="" name="ch1">
  <label for="ch1">check1</label>
  <input type="text" id="ch2" name="ch2">
  <label for="ch2">check2</label>   
  <input type="text" id="ch3" name="ch3">
  <label for="ch3">check3</label>  
  <button type="button">Run</button>
</form>  

<p id="results"></p>

Gruß ebody