Strange behavior of JavaScript with jQuery Address (plugin).
I have this code:
var handler = function(data) {
$('#conteudo').hide().html($('#conteudo', data).html()).fadeIn(500);
$.address.title(/>([^<]*)<\/title/.exec(data)[1]);
};
And it works. Perfectly.
Now I change the code:
var handler = function(data) {
$('#conteudo').fadeOut(500, function() {
$('#conteudo').html($('#conteudo', data).html()).fadeIn(500);
});
$.address.title(/>([^<]*)<\/title/.exec(data)[1]);
};
Now the fade out effect works, and after fade in (with new content). Beautiful! But this little change in the way of writing the new content (inside of the new function, after fadeOut) broke my sub-links inside my pages.
Here's a live example:
- Access this URL: http://impulse.im/clean/2/
- In the top menu, click on 'Contato'.
- Now look the
hrefof link 'Rafa' in the loaded content!
http://impulse.im/clean/2?_escaped_fragment_=%2Fcontato%2Frafa.
This is not correct: it should read
http://impulse.im/clean/2/#!/contato/rafa - Again: http://impulse.im/clean/2/ - Click on 'Contato'. Now RELOAD the page.
- The link 'Rafa' is now correct.
What this new function (after fadeOut) is doing with the code? Why this function is breaking my link?
Thanks!
form.jsscript, but server returns 404. – kirilloid Feb 19 '11 at 13:12form.jscode. But I think the problem is not my changes. Is only thefadeOutchange. – RafaLibrenz Feb 19 '11 at 21:50fadeOut, invar handler. The error was exactly the same. The problem is not in my code. I'm even thinking it might be a bug of jQuery Address. – RafaLibrenz Feb 21 '11 at 21:56