Created
October 27, 2020 02:55
-
-
Save brenonovelli/38b88516f3f5ab56b8fe996883e0f91f to your computer and use it in GitHub Desktop.
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
/** | |
* Text for Instagram Icon | |
*/ | |
// Novo texto do ícone | |
const new_label_icon_instagram_header = "Instagram"; | |
// Elemento do ícone | |
const icone_header_instagram = document.querySelector( | |
".lista-redes .icon-instagram" | |
); | |
// Inserindo elemento no ícone | |
icone_header_instagram.insertAdjacentHTML( | |
"afterend", | |
new_label_icon_instagram_header | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment