SyntaxFix
Write A Post
Hire A Developer
Questions
Now to make this work on chrome 66, try this:
const reloadIframe = (iframeId) => { const el = document.getElementById(iframeId) const src = el.src el.src = '' setTimeout(() => { el.src = src }) }