Advertisement
ShadowEmbrace

zad_1-5_2

Sep 11th, 2024
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function changeTitle(){
  2.     let heading1 = document.getElementById('title1')
  3.     heading1.innerHTML = 'Changed Title'
  4. }
  5.  
  6. function changeColorPText() {
  7.     let paragraph = document.getElementsByTagName('p')[0]
  8.     paragraph.style.color = 'red'
  9. }
  10.  
  11. function changeColorPBg(){
  12.     let p = document.getElementById('p1')
  13.     p.style.background = 'aqua'
  14. }
  15.  
  16. function switchText(){
  17.     let p1 = document.getElementById('p1')
  18.     let p2 = document.getElementById('p2')
  19.  
  20.     let temp = p1.innerHTML
  21.     p1.innerHTML = p2.innerHTML
  22.     p2.innerHTML = temp
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement