Advertisement
BaneD

Moving iframe from one element to another

Nov 2nd, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.onresize = readjustTheForm;
  2. var current = 'desktop';
  3.  
  4. function readjustTheForm()
  5. {
  6.   //mobile - #xr_xd65
  7.   //desktop - #xr_xrc9 > .xr_noreset
  8.  
  9.   if(window.width < 720 && current === 'desktop')
  10.   {
  11.      document.getElementById('xr_xd65').appendChild( document.getElementById('JotFormIframe') );
  12.      current = 'mobile';
  13.   }
  14.   else if(window.width > 719 && current === 'mobile')
  15.   {
  16.     document.getElementById('xr_xrc9').getElementsByClassName('xr_noreset').appendChild( document.getElementById('JotFormIframe') );
  17.     current = 'desktop';
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement