How to Restore form using Cookie
I am using
js cookie plugin to generate json cookie.
- Cookies.set('myTestCookie', { cookieData },{ expires: 30 });
I am also able to restive it.
- var $recivedCookieData= Cookies.get('myTestCookie');
- alert($recivedCookieData);
I am also getting alert as
- {"cookieData":{"country":"uk","state":"england","city":"london","location":"Baker Street", "zip":"W1U"}}
if I have to fill up the form using the cookie data how should I do it?
my form uses post method.
Thank You.