Rohan

Rohan

  • NA
  • 1.4k
  • 116.2k

Clear cookies in using jquery.

Dec 22 2021 9:53 AM

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);
        }
    });


Answers (5)