There it is http://www.parcodesign.com.br, a magento e-commerce. On the footer links, like "Sobre", or "Onde Comprar", "FAQ", "Ajuda", "Informações de Entrega", any of these, when clicked, it triggers a javascript function. This one:
function abreInfo(id) {
jQuery("#infoShow").slideDown('fast', function () {
jQuery('html,body').animate({ scrollTop: jQuery("#infoShow").offset().top -120 }, 200);
jQuery("#infoShow>section").load("info/" + id + ".phtml", function () {
});
});
}
The id is taken from each link. It is working fine to show the content, but what I'm searching and trying to do now is to generate a exclusive URL for each of these links. In a way that when the link is clicked, it generates a new URL on the browsers URL box, and than making it able to be copied and accessed from a direct link. Unfortunately, for what I've already searched, no highlights for solutions.
Hope someone can help.