Skip to content

Instantly share code, notes, and snippets.

@thejungwon
Created September 28, 2018 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thejungwon/74a2a19c058a6a2b0b288a08ae365b5e to your computer and use it in GitHub Desktop.
Save thejungwon/74a2a19c058a6a2b0b288a08ae365b5e to your computer and use it in GitHub Desktop.
version 1
$(document).ready(function(){
$('.user-name').keypress(function(e) {
if(e.which == 13) {
var value = e.target.value;
if(!value) return;
$('.user-name').fadeOut(function(){
$('.greeting').html(`Hello ${value}.`);
$('.greeting').fadeIn(function(){
setCookie('username', value,365);
});
});
}
});
});
function setCookie(cname,cvalue,exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment