JavaScript - Funciona con IE pero no con Firefox

 
Vista:

Funciona con IE pero no con Firefox

Publicado por Iris (9 intervenciones) el 16/07/2007 16:23:49
Hola, necesito que este código (cuando presiono un botón, aparece un texto dentro de una tabla) que funciona bien en Internet Explorer funcione para Mozilla Firefox. Cómo puedo hacer??
Muchas gracias!!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
body {background:white}
.expandible{color:blue; cursor:pointer; font:Arial, Helvetica, sans-serif; color:#003366; font-size:11px}
.expandido{color:black; font-size:"12pt"}
.contraido{display:none}
</style>
<script type="text/javascript" language="JavaScript"><!--
var theme = '#CC0066';
var s_prop9="smb";
var s_prop9="hho";

function perfilador()
{
var hijo = document.all[event.srcElement.getAttribute("hijo",false)];
if(null != hijo)
hijo.className = hijo.className == "contraido" ? "expandido" : "contraido";
}
//--> <!--no borrar "//-->" -->
</script>

</head>

<body OnClick="perfilador();">
<table border="0" cellpadding="4" cellspacing="1" width="560" bgcolor="#CCCCCC" summary="Add summary of the data table">
<tr bgcolor="#E7E7E7">
<td width="132" class="smallbold" scope="row">Softcorp</td>
<td width="122" class="smallbold" scope="row">N, NE, SE,S e CO</td>
<td width="201" class="smallbold" scope="row">Todos</td>
<td width="68" class="expandible" hijo="infoSoft">Ver mais</a></td>
</tr>
</table>
<div id="infoSoft" class="contraido">
<table border="0" cellpadding="4" cellspacing="1" width="560" bgcolor="#CCCCCC" summary="Add summary of the data table">
<tr bgcolor="#666666" class="smallbold">
<td colspan="4" class="themeheader" scope="row">e-mail</td>
<td width="278" class="themeheader">Telefone</td>
<!-- <td width="35" rowspan="2" bgcolor="#E7E7E7"> </td>-->
</tr>
<tr bgcolor="#E7E7E7">
<td colspan="4" class="smallbold" scope="row"><a href="mailto:[email protected]" class="udrlinesmall">[email protected]</a></td>
<td>0800-7042 784</td>
</tr>
</table>
</div>

</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder