Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. window.getComputedStyle(document.querySelector("#example"),null).getPropertyValue('background-color'); //return rgb
  2.  
  3. window.getComputedStyle(document.querySelector("#example"),null).getPropertyValue('background'); //return null
  4.  
  5. document.querySelector("#example").style.backgroundColor; //If the value is not set, returns empty
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement