https://www.geeksforgeeks.org/how-to-design-a-simple-calendar-using-javascript/

April 2025

chevron_left chevron_right
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
  • 30
  • 31
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 1
  • 2
  • 3
update breadcrumbs to be dynamic, pull in title as last node
Search options: separate word search diacritics

Cookie

//  < js Cookies >
function setCookie(cname, cvalue, exdays) {
  var d = new Date();
  d.setTime(d.getTime() + (exdays*24*60*60*1000));
  var expires = "expires="+ d.toUTCString();
  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 "";
}

(function(){
  function run_cookie_modal_check(theCookieName) {
    var cookieVal = getCookie(theCookieName);
    if (cookieVal === "") {
      setCookie(theCookieName, 1, 7);
      setTimeout(function(){
        $('.modal-window').fadeIn();
      },2000);
    }
  }
  run_cookie_modal_check('visited');
})();
//  </ js Cookies >