As we all know, .serialize() and .serializeArray() conveniently misses file fields (also `hidden fields).
But, Is there a work around from which I could get the value of the file field from .serialize()?
P.S: I just intend to get the value, not upload the file.(Of Course, Uploading file would be better if it is possible, but I dont think JS is capable of such action)
.serialize()can't work on file fields, because JavaScript has no access to it's content (that is the content of the file). It's simply not possible to submit files with AJAX. – RoToRa Apr 1 '11 at 14:20