Skip to content

Instantly share code, notes, and snippets.

@erikpantzar
Created October 2, 2019 14:36
Show Gist options
  • Save erikpantzar/d634e413b8805ba9281f97099d13ac19 to your computer and use it in GitHub Desktop.
Save erikpantzar/d634e413b8805ba9281f97099d13ac19 to your computer and use it in GitHub Desktop.
function doIt() {
var url = window.location.href
var findURL = '/bestill-fly'
if (url.indexOf(findURL)) {
var newCopyFlightOnly = document.querySelector("#search-tabs > ul > li:nth-child(3) > a > span")
newCopyFlightOnly.innerText = 'Fly'
} else {
console.log('FEL')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment