Welcome Guest, Not a member yet? Register   Sign In
ci + jquery
#7

[eluser]Gavin Blair[/eluser]
I just use "load" with Code Igniter's site_url() function.

Here's the javascript (after loading in jQuery of course):
Code:
$(document).ready(function() {
    
   $("#submitit").click(function() {

        $("#ajaxresult").load("<?php echo site_url(); ?>/ajax/ajaxloadinfo", {id: id.value});

   });
  
});

Here's the form and ajax div:
Code:
<div id="ajaxresult">
&lt;?php
//non-ajax result:
if (isset($result))
    echo $result;
?&gt;
</div>

&lt;form action="&lt;?php echo site_url(); ?&gt;/ajax/loadinfo" method="POST"&gt;
&lt;input id="id" name="id" /&gt;
&lt;input type="submit" name="submitit" id="submitit" onclick="return false" /&gt;
&lt;/form&gt;

This degrades nicely - if javascript is disabled, it loads the "loadinfo" function of the "ajax" controller, otherwise it loads the "ajaxloadinfo" function of the controller. Both functions are basically the same, except "loadinfo" loads the view and passes a variable called $result, and "ajaxloadinfo" just echoes out the result.

The "{id: id.value}" part is the post variables. It assigns the value in the input box (which I named "id") to $_POST['id'], used by the controller.

It took me a long time to figure this out, since there are not many good tutorials on how to use jQuery's load function with Code Igniter (and the ones that do exist don't have many examples).

Hope this helps!
Gavin


Messages In This Thread
ci + jquery - by El Forum - 05-18-2008, 10:12 PM
ci + jquery - by El Forum - 05-19-2008, 02:55 AM
ci + jquery - by El Forum - 05-19-2008, 03:10 AM
ci + jquery - by El Forum - 05-19-2008, 03:35 AM
ci + jquery - by El Forum - 05-19-2008, 05:19 PM
ci + jquery - by El Forum - 05-20-2008, 09:45 AM
ci + jquery - by El Forum - 05-20-2008, 12:38 PM
ci + jquery - by El Forum - 05-24-2008, 06:00 PM
ci + jquery - by El Forum - 05-24-2008, 11:47 PM
ci + jquery - by El Forum - 05-25-2008, 08:34 PM
ci + jquery - by El Forum - 05-29-2008, 03:06 PM
ci + jquery - by El Forum - 05-29-2008, 04:04 PM
ci + jquery - by El Forum - 05-30-2008, 09:46 AM
ci + jquery - by El Forum - 08-18-2009, 12:27 AM
ci + jquery - by El Forum - 12-17-2009, 01:19 PM
ci + jquery - by El Forum - 12-18-2009, 04:44 AM
ci + jquery - by El Forum - 06-14-2010, 09:46 PM
ci + jquery - by El Forum - 09-12-2010, 08:14 PM



Theme © iAndrew 2016 - Forum software by © MyBB