We can grab user input (text, dropdown value, etc.) from form elements using the val() function in jQuery:
$("#myform").val()
Cookies allow us to store data in the client's browser. We're going to use the JS Cookie library which gives us an API that works across all browsers.
View the Cookie starter package here
Cookies.set('name', 'value');
Creates a cookie, valid across the entire site.
Cookies.set('name', 'value', { expires: 7 });
Creates a cookie that expires 7 days from now.
Cookies.get('name'); // = 'value'
Cookies.get('nothing'); // = undefined
Gets the value of a specific cookie.
Cookies.get(); // = { name: 'value' }
Cookies.remove('name');
Last updated: April 15, 2020