基本的に、クラス「リンク」を使用して複数のリンクを作成し、それぞれが表すもののIDを持っています。
JQuery スクリプトを作成しましたが、うまく機能せず、最初のエラーがスローされます。
$(function() {
$.get('pages/home.html')
.success(function(response) {
$('.contentblock').html(response);
})
.error(function(jqXHR, textStatus, errorThrown) {
$('.contentblock').html('<h1>Failed to load page(s)!</h1>');
});
$(document).on('click', '.link', function() {
$('.contentblock').html('<div class="animatedload"></div>');
var page = 'pages/' + $(this).attr('id') + '.html';
$('.contentblock').hide();
$.get(page)
.success(function(response) {
$('.contentblock').html(response);
})
.error(function(jqXHR, textStatus, errorThrown) {
});
$('.contentblock').fadeIn(1000);
});
});
6 行目に .error(function()){} を投げています。
これを解決するのを手伝ってください:(事前に助けてくれてありがとう!
編集:コードではなく、サーバーの問題でした:)
〜MCD