Have nice holidays!
I will also have a nice New Year if I solve the problem.
So I have an iframe
, which is dynamically inserted in a certain place between page content. I need to reload the iframe
on window resize, but I can't select it. I've tried:
$(window).on('resize', 'iframe', function(){
//code for reloading
});
But it doesn't work. Any ideas?