Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/02/2009, 16:09
ariel_prado
 
Fecha de Ingreso: mayo-2006
Mensajes: 5
Antigüedad: 18 años, 6 meses
Puntos: 0
Pregunta Problema con jquery

Hola estoy haciendo un web para mi empresa en joomla esto no es el problema
el problema me viene al utilizar una función con jquery, la función funciona perfectamente pero en ie7 me sale un error "El objeto no acepta esta propiedad o método" ?¿ podrían decirme si tengo algo mal hecho, soy novato en javascript.
Mi web:
driat.com

Código PHP:
<script type="text/javascript" src="templates/<?php echo $this->template
?>
/js/jquery.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        if ($("div#isquierda").height() > $("div#derecha").height()) {
            $("div#derecha").height($("div#isquierda").height())
        }else{
            $("div#isquierda").height($("div#derecha").height())
        }                
        if ($("html").height() > $("div#central").height()) {
            $("html").height("100%")
            $("body").height("100%")
            $("div#central").height($("html").height())            
        }
        if ($("div#isquierda").height() > $("div#central").height()) {
            $("div#central").height($("div#isquierda").height()+215)    
        }
        $("div#cuerpo").height($("div#isquierda").height()-29)
    }
    );
</script>