Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/06/2009, 11:07
PoLiZe
 
Fecha de Ingreso: marzo-2008
Ubicación: Santa Cruz, Argentina
Mensajes: 433
Antigüedad: 16 años, 9 meses
Puntos: 5
Si la cookie es la correcta ejecutamos accion

Holas gente, bueno tengo un problemita..
http://mundo-games.com/foro/

Lo de la columna... Quiero que si vos haces un click en ver columna se guarda un cookie y qe cada ves qe entres al sitio se vea segun la cookie (Abierta o oculta)

Se entiende?

Código javascript:
Ver original
  1. <script type="text/javascript">  
  2.     function cookies() {
  3.                     if(document.cookie == "sinbarra") {
  4.                 document.getElementById("right-side").style.width = "850px";
  5.                 }
  6.                 if(document.cookie == "conbarra") {
  7.                 document.getElementById("right-side").style.width = "590px";
  8.                 }
  9.                 };
  10.         $(function()  {  
  11.            $("#mostrar").click(function(event) {        
  12.             event.preventDefault();    
  13.                 tamanio = document.getElementById("right-side").style.width
  14.             if(tamanio == "590px")
  15.             {
  16.              document.cookie="sinbarra";
  17.              document.getElementById("right-side").style.width = "850px";
  18.              }
  19.              if(tamanio == "850px")
  20.              {
  21.              document.cookie="conbarra";
  22.              document.getElementById("right-side").style.width = "590px";
  23.              }
  24.              
  25.              
  26.             $("#left-side").slideToggle();  
  27.             });  
  28.  
  29.         });  
  30.         </script>

Eso intente hacer pero no tubo resultado :(

Necesito Ayuda