Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.18 KB | None | 0 0
  1. $(document).ready(function(){
  2.     $.ajax({
  3.         url : 'test.php',
  4.         type : 'GET',
  5.         cache: true,
  6.         contentType: 'json',
  7.         success : function(data){
  8.             console.log(data);
  9.         }
  10.     });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement