The input
:
<input type="hidden" name="TestProp" value="\"Test\", NS">
Ajax call:
$.ajax({
url: window.testUrl,
type: 'POST',
data: $("#Form").serialize(),
success:..
The serialized Form returns
TestProp=
, so this is where the data gets lost.
Any ideas on how to serialize form data with quotation marks string?