Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/03/2013, 13:51
crafter_v
 
Fecha de Ingreso: febrero-2013
Mensajes: 90
Antigüedad: 11 años, 9 meses
Puntos: 0
Respuesta: Problemas con jQuery en Internet Explorer

Código:
   <script src="Scripts/jquery-1.9.1.js" type="text/javascript"></script>   
      <script>
			$(document).ready(function(){
				
				
				$(".boton1").hover
				
					(function(){
	
						$(this).stop().fadeTo(0,0.4);
					
					}, function(){
					$(this).stop().fadeTo(0, 1.0);
					
					});
					
					
				$(".boton2").hover
				
					(function(){
	
						$(this).stop().fadeTo(0,0.4);
					
					}, function(){
					$(this).stop().fadeTo(0, 1.0);
					
					});	
					
					
				$(".boton3").hover
				
					(function(){
	
						$(this).stop().fadeTo(0,0.4);
					
					}, function(){
					$(this).stop().fadeTo(0, 1.0);
					
					});
					
									
				$(".boton4").hover
				
					(function(){
	
						$(this).stop().fadeTo(0,0.4);
					
					}, function(){
					$(this).stop().fadeTo(0, 1.0);
					
					});					

				
				$("#logo").hover
				
					(function(){
	
						$(this).stop().fadeTo(0,0.4);
					
					}, function(){
					$(this).stop().fadeTo(0, 1.0);
					
					});
				
				
				$(".apartado").hover
				
					(function(){
	
						$(this).stop().fadeTo(250,0.4);
					
					}, function(){
					$(this).stop().fadeTo(250, 1.0);
					
					});
					
					
				$(".link2").hover
				
					(function(){
						
					$(this).fadeTo(0,0.4);
					
					
					}, function(){
					$(this).fadeTo(0, 1.0);
					
					});				
				
			});
      </script>