I am trying to use http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/ and modifying it myself, I added fancybox and tinyscrollbar it is working at the first, however, after I switch between some pages it is no longer working. I tried to find my answer in the comments of the tutorial page, I used .live() but it seams it is not working and I can not figure out the solution, hear is my code:
$(document).ready(function() {
var hash = window.location.hash.substr(1);
var href = $('#nav li a').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-5)){
var toLoad = hash+'.html #content';
$('#content').load(toLoad)
}
});
$('#nav li a').live ('click', function(){
var toLoad = $(this).attr('href')+' #content';
$('#content').slideToggle('fast',loadContent);
$('#load').remove();
$('#wrapper').append('<span id="load">LOADING...</span>');
$('#load').fadeIn(500);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
function loadContent() {
$('#content').load(toLoad,'',showNewContent())
}
function showNewContent() {
$('#content').show(500,hideLoader());
}
function hideLoader() {
$('#load').fadeOut(500);
}
return false;
});
$("#scrollbar1").tinyscrollbar();
$("a#example1").fancybox();
});
thank you, Andrew