Remove all cookies using jquery

you can download cookies plugin from https://plugins.jquery.com/cookie/

and use this script
var cookies = $.cookie();
for(var cookie in cookies) {
   $.removeCookie(cookie);
}









Comments

Popular posts from this blog

SQL Interview Questions and Answers

Generic Interface and Factory Pattern in C#

How to get device info IMEI programmatically in xamarin android