Cita:
Iniciado por egepe 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 originalvar show_post_css = function(){
// Show post Color
$('.show_posts_maincontainer:even').css({"background-color":"#EEEEEE"});
// Show Posts hover
$(".show_posts_maincontainer").hover(function(){
$(this).css({"background-color":"#D2E3FB"});},
function(){
$(".show_posts_maincontainer:odd").css({"background-color":"white"});
$(".show_posts_maincontainer:even").css({"background-color":"#EEEEEE"});
});
};