El siguiente código fallará en mis dos cromos en 2 equipos diferentes (Windows 7 ambos, Chrome 12.0.742.100).Chrome: Error no detectado: no se puede cargar XRegExp dos veces en el mismo marco
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Test</title>
<script type="text/javascript">
location.hash = "#one";
location.hash = "#two";
location.hash = "#three";
</script>
</head>
<body>
This will error out "Uncaught Error: can't load XRegExp twice in the same frame" in chrome. Anyone got an answer?
</body>
</html>
Me siento como si hubiera intentado todo. ¿Alguien puede confirmar este error en Chrome y alguien tiene una idea de cómo lo soluciono? Muchas gracias.
URL al error: http://jalsoedesign.net/test/hashchanging/
debería añadir: Funciona bien, hace lo que debe (cambia los valores hash de página), pero todavía sale con un error.
Win 7/Chrome 12.0.742.100 - no hay problema para mí al abrir ese enlace. – amelvin
¿Y tampoco hay error en tu consola? – h2ooooooo