Skip to content

Instantly share code, notes, and snippets.

@amalmurali47
Created April 24, 2020 14:36
Show Gist options
  • Save amalmurali47/0c49612f87f3e74c4928c438b8471b6d to your computer and use it in GitHub Desktop.
Save amalmurali47/0c49612f87f3e74c4928c438b8471b6d to your computer and use it in GitHub Desktop.
var hash = document.location.hash.substr(1);
if(hash){
displayReason(hash);
}
document.getElementById("reasons").onchange = function(e){
if(e.target.value != "")
displayReason(e.target.value);
}
function reasonLoaded () {
var reason = document.getElementById("reason");
reason.innerHTML = unescape(this.responseText);
}
function displayReason(reason){
window.location.hash = reason;
var xhr = new XMLHttpRequest();
xhr.addEventListener("load", reasonLoaded);
xhr.open("GET",`./reasons/${reason}.txt`);
xhr.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment