Would anyone be able to tell me what I'm doing wrong in the following code that the form is not being submit to the iframe?
$(function() {
$(".preview").click(function() {
$('#sliderimage').wrap('<form action="/index/upload.php" method="post" id="imageform" target="imageupload" />');
$('#imageform').submit();
$('#sliderimage').unwrap();
return false;
});
});
<iframe style="display: none;" name="imageupload" id="imageupload"></iframe>
<input type="file" id="sliderimage" name="sliderimage">
<input type="button" class="preview" value="Preview">
enctype="multipart/form-data"on the form, also switchtypeformethodin the form tag – rlemon Apr 5 '12 at 3:00<?php echo "run";– rlemon Apr 5 '12 at 3:07