Advertisement
Guest User

Untitled

a guest
Jul 4th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1.  
  2. <a id="<?php echo $row["kategori_id"];?>" class="btn btn-danger" href="#<?php echo $row["kategori_id"];?>" data-url="<?php echo URL;?>/admin/index.php?git=kategori_sil&id=<?php echo $row["kategori_id"];?>"><em class="fa fa-trash"></em></a>
  3.  
  4.  
  5.  
  6.  
  7.  
  8. $(".sil").on('click',function(){
  9.  
  10. var sil_id=$(this).attr("id");
  11.  
  12. var sil_url=$(this).data("url");
  13.  
  14. bootbox.prompt({
  15. animate: false,
  16.  
  17. size: 'small',
  18.  
  19. title:'<b>'+sil_id+'</b> idsine sahip kayıt silinsin mi?',
  20.  
  21. message: '<b>'+sil_id+'</b> idsine sahip kayıt silinsin mi?',
  22.  
  23.  
  24. callback: function(result){
  25. if (result === null||result === ''){
  26.  
  27. return;
  28.  
  29. }else{
  30.  
  31. $.ajax({
  32. type: 'GET',
  33. timeout: 180000,
  34.  
  35. url: sil_url,
  36. error: function(){alert("Bir hata meydana geldi")},
  37. success: function(html){
  38.  
  39. //silme başarılıysa bişiler yaptır
  40. }
  41.  
  42. })
  43.  
  44. }
  45. })
  46. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement