currently I have the following:
$.ajax({ type: \'POST\', url: this.action, data: $(this).serialize(), });
This works fine, howe
this better:
data: [$(this).serialize(),$.param({NonFormValue: NonFormValue})].join('&')