Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function innerEasterEgg(){
  2. innerHTMLForText("Easter egg'ie");
  3. }
  4. function innerAboutMe(){
  5. innerHTMLForText("About me");
  6. }
  7. function innerHTMLForText(String value){
  8. innerHTMLById("text", value);
  9. }
  10. function innerHTMLById(String id, String value){
  11. document.getElementById(id).innerHTML = value;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement