Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1.  
  2.  
  3. $("document").ready(function(){
  4.  
  5. $("button").click(function(e){
  6. e.preventDefault();
  7. var nikpria=$('#nik-pria').val();
  8. var nikwanita=$('#nik-wanita').val();
  9. $.ajax({
  10. type: "POST",
  11. url : 'http://localhost/dukcapil/public/aktanikah/searchnik',
  12. data : {nikpria: nikpria, nikwanita: nikwanita},
  13. contentType: "application/json; charset=utf-8",
  14. dataType: "json",
  15. success : function(){
  16. console.log('bitch');
  17. },
  18. error : function(){
  19. alert("error coy");
  20. }
  21. },"html");
  22.  
  23. });
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement