Relating to my last question. I have an upload field where the user can choose a picture and this becomes resized (client-side via JavaScript), base64 encoded (JavaScript as well) and sent via a hidden field. I do this in order to save bandwidth of the user (e.g. usage with a 3G connection).
But I don't know how to not send the user upload file <input type="file" name="file" id="file" class="span4">
within the <form>
tags. The obvious solution would be to exclude the file upload field from the form but this would kill my layout. Is this possible?