Welcome Guest, Not a member yet? Register   Sign In
Jquery Database Query and handling output.
#15

[eluser]Rolly1971[/eluser]
just a thought here, i started using CI at 1.7.2. I had issues getting the form helper functions working correctly. So i stopped using them. All my forms are purpose built basically static html. Try creating your form as static html (using php where needed to echo out default values)

also try adding your jquery code to the bottom of the page, just before the ending </body> tag.

don't forget to that when you write your jquery code that it should be formed like this:

Code:
$(document).ready(function() {
  //example:
  $( "#loginsubmit" ).click(function() {
    var loginform = $( "#loginForm" ).serialize();
    var url = "<?php echo site_url('auth/login'); ?>";
    var data = $.post(url, loginform , function(data){
                     // code here to process json response
           });
  });
});

that is what works for me. Hopefully it helps.


Messages In This Thread
Jquery Database Query and handling output. - by El Forum - 08-13-2011, 02:27 PM
Jquery Database Query and handling output. - by El Forum - 08-13-2011, 02:30 PM
Jquery Database Query and handling output. - by El Forum - 08-13-2011, 03:47 PM
Jquery Database Query and handling output. - by El Forum - 08-13-2011, 05:45 PM
Jquery Database Query and handling output. - by El Forum - 08-13-2011, 07:47 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 02:09 AM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 03:49 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 04:40 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 05:04 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 06:46 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 08:18 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 08:29 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 08:32 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 09:24 PM
Jquery Database Query and handling output. - by El Forum - 08-14-2011, 10:58 PM



Theme © iAndrew 2016 - Forum software by © MyBB