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>