Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/04/2014, 19:47
tzecreto
 
Fecha de Ingreso: abril-2014
Mensajes: 2
Antigüedad: 10 años, 8 meses
Puntos: 0
Pregunta Lllevar a un usuario a cierto tab

Hola tengo el siguiente script

Código:
$(function (activar_pestanya) {
   
   				var tabContainerssup = $('div.contenidodetabs > div');
 

			    $('div.tabs a').click(function () {
			  
		        	tabContainerssup.hide().filter(this.hash).show();
		$(this).addClass('active').siblings().removeClass('active');
  	        	return false;
			    }).filter(':first').click();
			});
el cual me lleva a los tabs y esconde a los otros, funciona correctamente aqui un ejemplo
http://hogaresunion.lxr.mx/zona/paseos-del-pedregal/
que me muestra el tab Topacio

Pero lo que quiero es que si en el navegador pongo
http://hogaresunion.lxr.mx/zona/paseos-del-pedregal/#Toledo

me lleve al tab toledo directamente

Gracias