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>