Thank you for responding.
I'm using a javascript toolkit from DHTMLX. The "Window" component is displaying a form with an attached URL. This is DHTMLX jargon, but it provides some background as to what I'm trying to do.
I'm trying to POST a form without processing/serializing the data, that's why the processData property is false. The context for the POST is the form I'm trying to submit which is passed to .ajax as objContext.
The content-length request header is 0, meaning that jQuery did not understand that I don't want to serialize the data.
jQuery is sending a request header content-length of 0 wether I include the following two properties or not.
dataType:"html",
contentType:'text/html',
If you know how to submit a form using post with the form as the context, not serializing the data, that will help me!
Thanks again!!