Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. const activeElement = document.querySelector('.element');
  2.  
  3. function receiveMessage(event) {
  4. if (event.origin != "file:///Users/paweldabrowa/Websites/logitech/index.html") {
  5. return;
  6. }
  7.  
  8. document.querySelector('#enter-competition');
  9. activeElement.classList.add('display-flex');
  10.  
  11. }
  12. if (window.addEventListener) {
  13. window.addEventListener("message", receiveMessage, false);
  14. } else {
  15. window.attachEvent("onmessage", receiveMessage);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement