Estoy usando un script para ir a un sitio dentro de una misma pagina, el problema que cuando me lleva al div al hacer click el link que tengo dentro de esa div se pierde.
Aquí el código:
Código Javascript:
Ver original
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script> $(function(){ $('a[href*=#]').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var $target = $(this.hash); $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']'); $target.html($("<label>" + $target.text() + "</label>").css("background-color", "yellow")); if ($target.length) { var targetOffset = $target.offset().top; $('html,body').animate({scrollTop: targetOffset}, 1000); return false; } } }); }); </script>
Código HTML:
Ver original
Gracias por cualquier ayuda.
Saludos!