Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. var table = $('#orders-table');
  2. //var iframe = $('#iframe');
  3.  
  4. table.on('click', 'button', function(ev){
  5. var orderId = $(ev.target).attr('data-order-id');
  6. //window.open('Order_Summary.php','_blank');
  7. swal({ title: "Are you sure?", text: orderId +"You will not be able to recover this imaginary file!",
  8. type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55",
  9. confirmButtonText: "Yes, delete it!", closeOnConfirm: false }, function(){
  10.  
  11.  
  12. $.get( "ViewOrdApproval2.php", { order_id: orderId} ) .done(function( data ) {
  13.  
  14. swal("Updated", "Your Order update has been done successfully", "success");
  15. console.log (orderId);
  16. });
  17.  
  18. })
  19.  
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement