Welcome Guest, Not a member yet? Register   Sign In
Ajax Record Deletion?
#3

[eluser]alexaaaaaaaaaa[/eluser]
don't use $_post use $this->input->post('field_name');
here's a simple example on how to do it

$(document).ready(function() {
$("a.link_class").click(function (event) {
event.preventDefault();
if (confirm('Are you sure? ')){

var del_id = $(this).attr('id');
$.post("index.php/Dashboard/delete_goal", {item_id : del_id}, function(data){

// succcess??
}); }
}); });
//here's the loop foreach ($whatever as $me)
{
<?= anchor('#', 'Delete', array('class' =>'link_class', 'id'=>$something->id)); ?>
}


Messages In This Thread
Ajax Record Deletion? - by El Forum - 09-18-2010, 11:39 AM
Ajax Record Deletion? - by El Forum - 09-18-2010, 11:54 AM
Ajax Record Deletion? - by El Forum - 04-22-2011, 12:49 AM



Theme © iAndrew 2016 - Forum software by © MyBB