Can you please take a look and help me realize where am I going wrong with this? Here is the jsfiddle link: http://jsfiddle.net/Hitman666/QcEkj/1/ but also here is that code
Something else that prevents serializeArray()
from serializing properly is disabled
inputs. serializeArray
does not serialise disabled inputs, in much the same way that disabled inputs are not submitted with the form.
A successful control is "valid" for submission.
- Controls that are disabled cannot be successful.
Source