I need to delete all the cookies and form datas when the page loads.
I have tried this one..
$.cookie('my_cookie_name', null);
Here, my_cookie_name
is set to null i.e using the particular cookie name, the value is set to null. But, I need to delete all the cookies as well as form data when the page loads.
Is it possible using javascript or jquery?