Hey! I'm afraid I cant provide a testpage, but here is a sample of the code if that help?
<script src="<%= Url.Content ("~/Scripts/jquery-1.2.6.js") %>" type="text/javascript"></script> <script src="<%= Url.Content ("~/Scripts/jquery.validate.js") %>" type="text/javascript"></script> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#group-edit-form").validate({ rules: { title: { required: true, }, description: { required: true } }, }) }); </script> <h2>Groups</h2> <form action="<%= Url.Action ("Save", new { id = ViewData ["GroupId"] }) %>" id="group-edit-form" class="GroupForm" enctype="multipart/form-data" method="post"> <label for="groupImageUpload">Upload group image*</label> <input type="file" name="groupImageUpload" id="groupImageUpload" / > <label>*<em>required field</em></label><input type="submit" name="submit" value="Save >>" class="submit" /> </form> Thanks! Wayne On Dec 9, 9:57 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Could you provide a testpage? > > Jörn > > On Tue, Dec 9, 2008 at 6:11 PM, Wayne Austin > > > > <[EMAIL PROTECTED]> wrote: > > > Hi, i'm having an issue when using thevalidateplugin. When the > > plugin is applied to the form, if I select afilein myfileinput > > field then focus on another field in the form it removes the value. > > This only seems to happen in IE and only tofileinputfields. > > > Any ideas as to why this would be happening? > > > Thanks!- Hide quoted text - > > - Show quoted text -