Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/03/2013, 15:22
psd_atack
 
Fecha de Ingreso: septiembre-2011
Ubicación: irapuato
Mensajes: 27
Antigüedad: 13 años, 1 mes
Puntos: 1
Cambiar Background-color

Hola amigos del foro. Tengo el siguiente codigo
Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
#Cuadro
{
	width:80px;
	height:30px;
	background-color: black;
	color:White;
}

</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>
<script type="text/javascript" >
    $(document).ready(function () {
        $("#Cuadro").mouseover(function () {
            $(this).animate({ width: 0 });
            var color = $('#Cuadro').css('width');
            if (color == "80px") {
                $(this).animate({ backgroundColor: 'White' , width: 110 });
                document.getElementById('Cuadro').innerHTML = "Nuevo menu";
            }
        });

        $("#Cuadro").mouseout(function(){
            $(this).animate({ width: 80 });
            var color = $('#Cuadro').css('width');
            if (color == "110px") {
                
                document.getElementById('Cuadro').innerHTML = "Menu 1";
            }
        });
    }); 
</script>
</head>
<body>
<div id="Cuadro">Menu 1</div>
</body>
</html> 
El problema que tengo es que cuando intento que cambie el color de fondo no lo hace. solo modifica el width, n ose que estoy haciendo mal, espero me puedan ayudar