5
Answers

Clear cookies in using jquery.

Rohan

Rohan

3y
938
1

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)