So i have an i frame
<iframe onload='window.top.scrollTo(0,0);' scrolling='no' src='http://link.me/en/' />
and on this iframe i would like to ad also
<iframe onload='resizeIframe(this)' scrolling='no' src='http://link.me/en/' />
I have tried:
<iframe onload='window.top.scrollTo(0,0);resizeIframe(this)' scrolling='no' src='http://link.me/en/' />
but is not working.
How can i combine
onload='resizeIframe(this)'
and onload='window.top.scrollTo(0,0);'
in the same i frame?
Thank you