Welcome Guest, Not a member yet? Register   Sign In
Codeigniter with Ajax
#20

[eluser]pickupman[/eluser]
In your <head> tag, add a script tag pointing to your jquery source, then add
Code:
[removed]

jQuery(document).ready(function($){
$("select[name='accountNoForACH']").change(function(){
    $("input[name='bankNameForACH'],input[name='routingNoForACH']").val('');
    $.ajax({
        data:     $(this).parents("form").serialize(),
        dataType: 'json',
        url:      '<?=site_url("controller/get_details");?>',
        success:  function(data, statusText){
            if(data.response = '200'){
               $("input[name='bankNameForACH']").val(data.bankNameForACH);
               $("input[name='routingNoForACH']").val(data.routingNoForACH);
            }
        }        
    });
});
});
[removed]

The removed blocks would be your opening and closing script tags.


Messages In This Thread
Codeigniter with Ajax - by El Forum - 05-28-2010, 03:11 AM
Codeigniter with Ajax - by El Forum - 05-30-2010, 12:38 PM
Codeigniter with Ajax - by El Forum - 05-30-2010, 11:39 PM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:20 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:38 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:40 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:42 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:42 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:46 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:48 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 05:52 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 06:00 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 06:38 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 06:42 AM
Codeigniter with Ajax - by El Forum - 05-31-2010, 06:46 AM
Codeigniter with Ajax - by El Forum - 06-01-2010, 03:18 AM
Codeigniter with Ajax - by El Forum - 06-02-2010, 01:05 AM
Codeigniter with Ajax - by El Forum - 06-02-2010, 07:20 AM
Codeigniter with Ajax - by El Forum - 06-02-2010, 07:54 AM
Codeigniter with Ajax - by El Forum - 06-02-2010, 10:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB