Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/10/2010, 11:48
stromper
 
Fecha de Ingreso: marzo-2010
Mensajes: 11
Antigüedad: 14 años, 2 meses
Puntos: 0
Respuesta: Pequeño problema con mi buscador instanstaneo

Cita:
Iniciado por egepe Ver Mensaje
Y que haces en show_post_css() no lo mostraste?

Pero donde creas el AJAX y yo utilizaría un ajax.open(get,"pgm.php?param1=valor1") en lugar de un load, pero si te funciona bien no hay problema.

te reitero mi pregunta inicial ? saludos
el show_post_css reliaza la siguiente accion

Código Javascript:
Ver original
  1. var show_post_css = function(){
  2.         // Show post Color
  3.     $('.show_posts_maincontainer:even').css({"background-color":"#EEEEEE"});
  4.     // Show Posts hover
  5.     $(".show_posts_maincontainer").hover(function(){
  6.     $(this).css({"background-color":"#D2E3FB"});},
  7.     function(){
  8.         $(".show_posts_maincontainer:odd").css({"background-color":"white"});
  9.         $(".show_posts_maincontainer:even").css({"background-color":"#EEEEEE"});
  10.     });
  11.     };