iframe scroll to div after i frame load using jquery

jQuery(window).on('load', function() {
console.log("Kahnu iframes loaded")

// getting gh_jid
var urlParams = new URLSearchParams(window.location.search);
var gh_jid_value = urlParams?.get('gh_jid');

// getting iframe value
var iframeSrc = jQuery('#grnhse_iframe').attr('src');
var iframeTokenValue = iframeSrc?.match(/token=([^&]*)/)[1];

if (gh_jid_value && gh_jid_value === iframeTokenValue) {
var targetOffset = jQuery('#grnhse_iframe').offset().top;
//console.log("targetOffset", targetOffset)
jQuery('html, body').animate({
scrollTop: targetOffset
}, 1000);
}
});