Gyum Fox
Gyum Fox

Reputation: 3627

How to clear the cookies in a Cordova app?

How do you clear the cookies in a Cordova app?

In particular, I want to make sure all cookies set by the servers in the iframes contained in the app are cleared.

Upvotes: 1

Views: 4450

Answers (1)

Gyum Fox
Gyum Fox

Reputation: 3627

The Phonegap-Cookies-Plugin does the job. Please note that it works for both PhoneGap and Cordova.

As said in the documentation, after installing the plugin you may call this code:

window.cookies.clear(function() {
  console.log('Cookies cleared!');
});

Upvotes: 3

Related Questions