Попробуй так
var count = 0
function ajax(){
if (count<10){
count++;
$.ajax({
type: "GET",
url: "test.js",
success:function(){
setTimeout("ajax",Math.random()); // Для случайной задержки))
}
});
}else{
count=0;
}
}
$('#btn').click(function(){
ajax();
});