> Everything has been checked for validation and so on. Doesn't work in > IE or FF. Thanks in advance! > > <script type="text/javascript"> > $(document).ready(function() { > var submitoptions = { > target: '#loading' > }; > > $('#e2').submit(function(){ > $(this).ajaxSubmit(submitoptions); > return false; > });}); > > </script> > > <form id="e2" enctype="multipart/form-data" class="photoform" > action="photo_process.php" method="post"> > <label>Photo # 2</label><br/> > <input type="file" name="photo"/> > <input type="submit" name="upload" value="Upload" style="width:100px;"/ > > </form>
The code looks fine, aside from a missing > char in your submit input. Can you explain what is not working? Is it not posting? Not processing the response? Mike