MoFish Posted February 16, 2014 Share Posted February 16, 2014 Hi, I have a form posting to a php page which does some echo's. <div class="content"></div> <script> $('#designForm').submit(function(event) { event.preventDefault(); $.ajax({ type: 'POST', url: 'inc/design/design.process.php', data: $(this).serialize(), dataType: 'html', complete: function (data) { $('.content').html(data); } }); }); </script> I'm somehow getting responses in firebugs console, but nothing to in the webpage itself. Could anyone help shine some light onto why the messages would not be getting inserted into the .content div as i would have expected, but appear to be working in console? Thanks, MoFish Quote Link to comment Share on other sites More sharing options...
Solution Ch0cu3r Posted February 16, 2014 Solution Share Posted February 16, 2014 Use success: instead of complete: Quote Link to comment Share on other sites More sharing options...
MoFish Posted February 16, 2014 Author Share Posted February 16, 2014 That was it - I changed that yesterday thinking it would help. Thank You Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.