It is posting, but its not ajax posting. I've tried with and without other inputs, and it still submits like a normal form. I'm losing my mind over this one! Thanks for the quick response, Mike. Love the plugin, and have used it more than once!
On Feb 18, 5:26 pm, Mike Alsup <mal...@gmail.com> wrote: > > 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