Hello everyone I have use this code for clear cookies but cookies not clear.
$(document).ready(function () {
var contactUs=localStorage.getItem("");
if(contactUs=="true")
{
localStorage.removeItem("contact");
setTimeout(function () {
debugger
$.removeCookie("AspNetCore.Identity.Application");
window.location = "";
}, 10000);
}
});