Access second values from Cookies [closed]
i have two Name Value pairs in Cookies storage, how can i access each and store into Java variable in JSP. both are setup with document.cookie.
don't know how to access each, tried document.cookie but can only retrieve one not the second one.Cookie Screenshot
Trying to access with Javascript
function submitForm() { var newTye = document.cookie; console.log(newTye); }
Comments
Post a Comment