http://www.microteching.com/javascript/manejo-de-cookies-en-javascript
Pues... quiero que por ejemplo una img tenga un width determinado durante un tiempo y que luego cambie, como lo puedo combinar?
Un saludo.
Hice algo asi, pero no funca:
Código
<!DOCTYPE html> <html> <head> <script> function getCookie(c_name) { for (i=0;i<ARRcookies.length;i++) { x=x.replace(/^\s+|\s+$/g,""); if (x==c_name) { return unescape(y); } } } { var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); document.cookie=c_name + "=" + c_value; } function checkCookie() { var test=getCookie("test"); if (test!=null && test!="") { document.getElementByID('algo').style.width = "200px"; } else { test=document.getElementByID('algo').style.width = "200px"; if (test!=null && test!="") { } } } </script> </head> <body onload="checkCookie()"> <img src="http://files.softicons.com/download/internet-icons/social-networking-icons-by-wpzoom/png/32/google.png" id="algo" /> </body> </html>
Aquí lo podéis ver en "acción": http://jsfiddle.net/yYQQh/
Un saludo.