親切にこのコードを見てください:
$('a.load').click(function(){
setTimeout(function(){
$(".content_container").append('<div class="preloading"><img src="http://localhost:8888/smart/assets/images/loading.gif" alt="loading" /></div>').show();
var url = 'http://localhost:8888/smart/payments.html';
$.post(url,function(data){
$('.content_container').append(data).show();
$('.preloading').remove();
});
},1000);
});
必要なURLが返されないという問題、読み込み中の画像のみ、それは単なるhtmlページです