Last active
September 1, 2016 14:47
-
-
Save Skymetal/177a2b64d61f1963a431a01980c01362 to your computer and use it in GitHub Desktop.
js: Just Eat Mordor
This file contains hidden or 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
(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