ThisbuttonhasanONCLICKeventthatcallsafunction.Theoretically,itisalreadyinaline,itwouldonlyneedtheVALUEofacell.
obs:AddressesisthetbodyIDandtheTESTistheCELLID.Currentfunction:
functionteste(){varid=$(this).parent().find('td').attr('id');alert(**enderecos**[1].**teste**);}
Functiontorecoverdataonthescreen:
functionatualiza(){$.ajax({dataType:'json',url:'get_enderecos.php',success:function(data){for(vari=0;data.length>i;i++){$('#enderecos').append('<tr><tdid="teste">'+data[i].sequencia+'</td>'+
'<td>'+data[i].cep+'</td>'+
'<td>'+data[i].endereco+'</td>'+
'<td>'+data[i].bairro+'</td>'+
'<td>'+data[i].cidade+'</td>'+
'<td>'+data[i].estado+'</td>'+
'<td class="actions col-xs-2 col-sm-2 col-md-2 col-lg-2" align="center">'+
'<button class="btn btn-danger" onClick="teste()" type="button">Alterar Endereço</button>'+
'</td></tr>');
}
}
});
}