Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ...
  2. var unloading = false;
  3. ...
  4.  
  5. function resizeContainer() {
  6. if (!unloading) {
  7. window.parent.document.getElementById("xxx_div").style.display = "none";
  8. }
  9. }
  10.  
  11. $(window).load(resizeContainer);
  12. $(window).resize(resizeContainer);
  13. window.onbeforeunload = function () {
  14. window.parent.document.getElementById("xxx_div").style.display = "block";
  15. unloading = true;
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement