var iframe = document.querySelector("#iframe-id"); // change the id based on iframe's id
function setIframeSize(data){
if(data.zohosurvey ){
if(data.zohosurvey.action == "surveySize"){
iframe.style.height = data.zohosurvey.height + 'px';
iframe.style.width = data.zohosurvey.width + 'px'
}else if(data.zohosurvey.action == "moveScroll"){
window.scrollTo(500, iframe.offsetTop + data.zohosurvey.position);} } }
window.addEventListener('message', function(e) {
setIframeSize(e.data);
} , false);