jQuery ajax 호출 반복 10초마다 jQuery 아약스 호출을 반복하는 방법은 무엇입니까? $(document).ready(function() { $.ajax({ type: "GET", url: "newstitle.php", data: "user=success", success: function(msg) { $(msg).appendTo("#edix"); } }); 함수로 $.ajax를 랩하고 setInterval로 함수를 호출하려고 했습니다. $(document).ready(function() { function ajaxd() { $.ajax({ type: "GET", url: "newstitle.php", data: "user=success", success: function(msg) { $(m..