I’m trying to do a fake Ajax file upload with an iframe. When I submit the form, the browser window would flash white for a split second. Here’s my code:
$('#element input[type="file"]').change(function() {
$('#somediv').append('<iframe src="/" name="uploadFrame"></iframe>');
$('#somediv form').attr('target', 'uploadFrame').submit();
});
Adding:
To the iframe solved the problem.