Hello,
this is what i will do so far:
I click on "Upload image", a Facebox (jQuery Facebox Plugin) opens with a Form where i can upload a image via "ajax". For all my ajax forms i get all fields via
- var values = {};
$.each($(this).serializeArray(), function(i, field) {
values[field.name] = field.value;
});
This works - of course - not with file uploads. I'm really not an javascript/jquery-expert. What do you think is the best solution to upload the file without the facebox get closed?
Max
[Sorry for my baaad english :) ]