<--- --------------------------------------------------------------------------------------- ---- Blog Entry: Setting Form EncType Dynamically To Multipart/Form-Data In IE (Internet Explorer) Author: Ben Nadel / Kinky Solutions Link: http://www.bennadel.com/index.cfm?dax=blog:1273.view Date Posted: Jun 27, 2008 at 10:07 AM ---- --------------------------------------------------------------------------------------- ---> // Using jQuery, set both the enctype and the encoding // attributes to be multipart/form-data. $( "form#upload-form" ) .attr( "enctype", "multipart/form-data" ) .attr( "encoding", "multipart/form-data" ) ;