Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1.  
  2. function myModal(id) {
  3. $('#myModal').modal('show');
  4. $.ajax({
  5. type:"POST",
  6. url:"<?php echo base_url() ?>m_contact/GET_DETAIL",
  7. data:{id:id,<?php echo $this->security->get_csrf_token_name(); ?>:'<?php echo $this->security->get_csrf_hash(); ?>'},
  8. success:function(msg){
  9. $("#contentModal").html(msg);
  10. }
  11. })
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement