Created
April 24, 2020 14:36
-
-
Save amalmurali47/0c49612f87f3e74c4928c438b8471b6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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