I'm using this jquery cookie named jscookie.js and I've read over the readme and even implemented into my project.
The readme explains how to expire a cookie in 'days', but not hours or minutes.
Create a cookie that expires 7 days from now, valid across the entire site:
Cookies.set('name', 'value', { expires: 7 });
How do I set a cookie to expire in minutes or hours?