Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/05/2010, 23:00
alvarols
 
Fecha de Ingreso: diciembre-2008
Mensajes: 738
Antigüedad: 15 años, 5 meses
Puntos: 15
Problema con jquery y wordpress

Tengo este código jquery y no lo puedo hacer funcionar:

Código:
$(function () {
	$('.pg').hover(function(){
		$(this).children('li a').stop().animate({ opacity: 0.5,},200);
	}, function() {
		$(this).children('li a').stop().animate({ opacity: 1, },200);
	});
});
Pertenece a este código HTML

Código:
<ul class="pg">
	      <li><a href="<?php bloginfo('url'); ?>" title="Home">Inicio</a></li>
		<?php wp_list_pages('title_li=&depth=1'); ?>
	  </ul>
Ojalá me puedan ayudar que se me hace indispensable