Hola a todos!
Tengo un problema con 2 script (que tiene distinta funcionalidad). Me funcionan con IE, y con Mozilla no. Y la verdad no soy experto en javascript, y por mas que lo miro, nose que linea no es apta para Mozilla.
1º SCRIPT:
<td><textarea name="presentacion" id="presentacion" cols="50" rows="10" maxlength="255" onKeyUp="return ismaxlength(this)" ></textarea></td>
function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}
2º SCRIPT:
<select name="coles" id="coles" onchange="javascript:Redireccionar(this.getElement ById)" >
<option value="" id="" >Seleccione Colegio</option>
<option value="direcion prueba*" id="2" >PRUEBA1</option>
<option value="direcion prueba*" id="3" >PRUEBA2</option>
<option value="direcion prueba*" id="4" >PRUEBA3</option>
<option value="direcion prueba*" id="5" >PRUEBA4</option>
<option value="direcion prueba*" id="6">PRUEBA5</option>
</select>
*direcion prueba= direccion real.
function Redireccionar(Direccion)
{
var Direccion = document.all.coles.value;
window.location.href(Direccion);
}
------------------------------------------------------------------------------
Gracias de antemano!
Un saludo