Does the serialize function in jQuery replace dots ('.') with underscores?
For example, I have a form field such as:
<input id="Project.name" name="Project.name" type="text">
When the form is POSTed, I'm serializing the form data and sending it to another PHP file to save. The dots seem to be converted to underscores. Is this normal behavior?