/* Custom Javascript to use within plugins */ $( document ).ready(function() { customName(); }); function customName(){ if(window.location.href.endsWith("Login")){ var currentTitle = document.getElementById("navbar-text-top-left"); var navBar = document.getElementById("login-main-header"); var user = document.getElementById("username-label"); var pass = document.getElementById("password-label"); var signIn = document.getElementById("sign-in-button"); var extra = document.getElementById("login-extra-text"); currentTitle.innerText = "CROP"; navBar.innerText = "CROP "; user.innerText = "Crop user login:"; pass.innerText = "Crop user Password:"; signIn.innerText = "Go"; extra.innerText = "\n \n Rember to contact John Smith for any questions!"; } }