I am loading in an iframe from RightMove and I want to remove certain aspects of it. I've tried CSS and jQuery but I think the onLoad is not working. Here is my code:
jQuery('#advanced_iframe_2').load(function() { 
    jQuery("#globalHeader").hide();
    console.log('Working status 1');
});
And I am trying this :
jQuery(document).ready(function() {
  jQuery('#advanced_iframe_2').ready(function() {
   console.log('Working status 2');
  });
});
Can anyone point me in the right direction please?
Cheers
