0
div #target의 콘텐츠를 일부 애니메이션으로로드하는 코드입니다. 잘 작동하지만 링크를 변경하고 #hash로 URL을 구현하는 방법을 모르겠다! 어떻게해야합니까?아약스와의 깊은 연결을위한 url의 해쉬
코드 :
$(document).ready(function(){
$("#target").addClass('hide');
$('.ajaxtrigger').click(function() {
var pagina = $(this).attr('href');
if ($('#target').is(':visible')) {
}
$("#target").removeClass('animated show page fadeInRightBig').load(pagina,
function() {
$("#target").delay(10).transition({ opacity: 1 })
.addClass('animated show page fadeInRightBig');
}
);
return false;
});
});