The HTML standard for forms appears to be such that disabled input elements do not contribute to the form name/value collection.
Is there ANY way to get around this?
You can easily
reset input status to disabled
$(element).prop("disabled", false); var text = $(element).val(); $(element).prop("disabled", true)