Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.35 KB | None | 0 0
  1. $(document).ready(function() {
  2.     $('#simpanEditLink').click(function() {
  3.         $.ajax({
  4.             url: 'aset/php/editDataLink.php',
  5.             type: 'post',
  6.             data: $('#formEditLink').serialize(),
  7.             success: function(d) {
  8.                 $('.link-container').load("aset/php/tampilLinkViewMode.php");
  9.             }
  10.      });
  11.   });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement