Skip to content

Instantly share code, notes, and snippets.

View hvvvva's full-sized avatar
🎯
Focusing

hvvva hvvvva

🎯
Focusing
View GitHub Profile
@hvvvva
hvvvva / iframe-listener.js
Created December 5, 2022 14:43 — forked from mladenp/iframe-listener.js
iframe URL redirect listener
function iframeURLChange(iframe, callback) {
var unloadHandler = function () {
// Timeout needed because the URL changes immediately after
// the `unload` event is dispatched.
setTimeout(function () {
callback(iframe.contentWindow.location.href);
}, 0);
};
function attachUnload() {