I have a fancybox pop-up that contains a file input (input type="file"). Prior to fancybox 2, the fancybox contents stayed inside the form element in the DOM when the fancybox was displayed. Now that I've switched to fancybox 2, this is no longer the case; the fancybox contents are detached from their position in the DOM and relocated to a position outside of the form. Consequently, when the form is submitted the file selected in the file input is not uploaded with the request.
I don't have a good sense of whether the previous version of fancybox intentionally supported leaving the fancybox contents in their position in the DOM, or if that was just the way it worked without necessarily being intentional to solve the type of problem I'm having.
Regardless, is there a way I can ensure that fancybox 2 keeps the contents of the fancybox inside the form?
formto fancybox. BTW previous versions of fancybox (not the latest v1.3.4) used to "clone" elements into fancybox (and keep the originals in the DOM structure) but starting with v1.3.4 and v2.x+ elements are moved to fancybox and a placeholder is left instead. – JFK Nov 27 '12 at 2:48formto be inside the fancybox, because I have multiple fancyboxes that containformfields for a single form. I'll have to think more about it; maybe there's a variation that will work for me. – Matt Hurne Nov 27 '12 at 13:38