Skip to content

Instantly share code, notes, and snippets.

@Skymetal
Last active September 1, 2016 14:47
Show Gist options
  • Save Skymetal/177a2b64d61f1963a431a01980c01362 to your computer and use it in GitHub Desktop.
Save Skymetal/177a2b64d61f1963a431a01980c01362 to your computer and use it in GitHub Desktop.
js: Just Eat Mordor
(function() {
// Alter submit button text
var submitButton = document.querySelector('#searchForm-submit');
var originalText = submitButton.innerText;
var preText = " worthy of ";
var places = ["Mordor", "Gallifrey", "the Gods themselves", "Zeus", "The Avengers", "dickbutt"];
var place = places[Math.floor(Math.random()*places.length)];
var accents = ["!!!!", "?!", "???", " already!", " ffs..."];
var accent = accents[Math.floor(Math.random()*accents.length)];
submitButton.innerText = originalText + preText + place + accent;
$(".searchForm").css({
"max-width": "1500px"
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment