Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <li>
  2. <a onclick="excluirLancamento(<?= $user->id ?>)"><i class="fa fa-trash" aria-hidden="true"></i> Excluir</a>
  3.  
  4. <script type="text/javascript">
  5. function excluirLancamento(id) {
  6. if (confirm('Tem certeza que deseja excluir este registro?')) {
  7. $.ajax({async:true, type:'post',
  8. complete:function(request, json) {
  9. $('#caixa').html(request.responseText);
  10. excluirTr('registro'+id);
  11. },
  12. url:'/users/delete/'+id
  13. });
  14. } else { return false; }
  15. }
  16.  
  17. <script src="/webroot/js/jquery-3.2.1.min.js"></script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement