Ⓙⓐⓚⓔ schrieb:
> well it's not my birthday... but I understand that it works... without
> going thru how the cookie was made (the plugin) I know that arbitrary
> older dates always work. It may be a time zone thing or something else
> that is weird! did you ever try -100 days to see if that kills the
> cookie?
> 
> 
> On 2/21/07, Clodelio C. Delfino <[EMAIL PROTECTED]> wrote:
>> Thanks Jake for the reply, but below codes works for me now...in both
>> ie,ff and opera.
>>
>> $("#div_logout").click(function() {
>>         var cuser = $.cookie('my_cookie');
>>         var lgout_msg = "Logout user " + cuser + " from the system?";
>>
>>         if (confirm(lgout_msg))
>>         {
>>                 alert(cuser + " was succesfully logged out.");
>>
>>                 if ($.browser.msie)
>>                 {
>>                     $.cookie('my_cookie','',{expires: -1});
>>                 }
>>                 else
>>                 {
>>                     document.cookie = "my_cookie=''; expires=Sun, 01
>> Jan 1970 00:00:01 UTC; path=/"
>>                 }
>>
>>
>>                 $(".jqmClose").click();
>>
>>                 location.reload();
>>         }
>>
>>         return false;
>> });

I think it works simply because you changed the cookie name consistently 
to "my_cookie". There shouldn't be required a branch for IE. The test 
page works fine in IE.


-- Klaus

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to