@tressie.damore
To refresh an iframe when the parent page is refreshed, you can use JavaScript to reload the content of the iframe when the parent page is refreshed. Here's how you can do it:
1 2 3 4 5 |
<script> window.addEventListener('beforeunload', function() { document.getElementById('your-iframe-id').contentWindow.location.reload(true); }); </script> |
Replace 'your-iframe-id'
with the id of your iframe element.
By adding this script to the parent page, the content of the iframe will be reloaded every time you refresh the parent page.