$('#field').removeAttr('disabled');
var formData = $(this).serializeArray();
$('#field').attr('disabled', 'disabled');
The solution above is better - alternatively you can just remove the disabled attribute from the element, serialize the fields then re-add the attribute.