$.ajax({ type: "GET", // 요청 방식 url: "...", data: {}, // 요청하면서 함께 줄 데이터 (GET 요청시 필요 없음) success: function(response){ // 결과 담는 변수 } })