Thanks Klaus for the reply...i did notice the diff cookie name..arg,
my fault.Anyway, your cookie plugin helps a lot...Cheers.
Regards,
cdelfino
On 2/22/07, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> Clodelio C. Delfino schrieb:
> > Hi All,
> >
> > $.cookie('my_cookie','',{expires: -1}) doesn't seem to work in FF2.0
> > and Opera 9 but working well in IE 6/7 browser.
> >
> > May I ask how to ensure that "my_cookie" is assured
> > deleted/removed...thanks in advance.
> >
> > Btw, below is a snippet of code.
> > $(function() {
> > $("#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.");
> >
> > $.cookie('sjo_cookie','',{expires: -1});
> >
> > $(".jqmClose").click();
> >
> > location.reload();
> > }
> >
> > return false;
> > });
> > });
> >
> > Cheers,
> > cdelfino
>
> Are you sure you are using the correct cookie name when deleting? You
> are using two different cookies here ("my_cookie" and "sjo_cookie") but
> I cannot see where they are saved in this code...
>
> -- Klaus
>
> _______________________________________________
> jQuery mailing list
> [email protected]
> http://jquery.com/discuss/
>
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/