Hi All,
I had several times a problem, that the collected data by jQuery API's serialize() or serializeArray() was empty, although the inputs were not empty.
Follow these checkups to by pass the problem.
1] when the input don't name attribute the result will be empty.
<form id="form1"> <input type="text" value="test value"> <button>submit</button> </form>
SOLUTION:
<form id="form1"> <input type="text" value="test value" value="ANYNAME"> <button>submit</button> </form>