-1

cookie plugin .i m able to set the cookie but i am unable to delete the cookie.here is the code i set cookie like var cookieValue = $.cookie("username",email,{ path: '/' ,domain:'serverurl'}); and i tried to remove cookie in my logout.html like

<script type="text/javascript">
      function session()
      {
      $.removeCookie("username", { path: '/' ,domain:'serverurl'});

      window.location="login.html"
      }
    </script>
  </head>

  <body onload="session();"></body>
user3189357
  • 153
  • 1
  • 6
  • 16

1 Answers1

0

Try This

$.removeCookie('the_cookie', { path: '/' });
cracker
  • 4,900
  • 3
  • 23
  • 41