Created
October 21, 2022 13:43
-
-
Save samuelastech/3cf743de89e4cae9b8b0f2b86951a9dd to your computer and use it in GitHub Desktop.
A very simple script to change the date of CTR document
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
/* The date you wanna change */ | |
const date = '06/10/22' | |
const register = document.querySelector('#lb_DtRegistro') | |
const sent = document.querySelector('#lb_DtEnvio') | |
const destiny = document.querySelector('#lb_DtDestino') | |
register.innerText = date | |
sent.innerText = date | |
destiny.innerText = date |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment