We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the Wrapper creative is delivered within a multi-frames environment, it would not make it to the top window with w = window.self.parent;.
w = window.self.parent;
w = w.parent; could work instead.
w = w.parent;
(Potential) Modified Wrapper creative: <script type='text/javascript'> var i = 0, w = window.self; while(w!== window.top && !(w.PWT && w.PWT.displayCreative) && i<10){ w = w.parent; i++; } try{ w.PWT.displayCreative(document, '%%PATTERN:pwtsid%%'); } catch(e){} </script>
<script type='text/javascript'> var i = 0, w = window.self; while(w!== window.top && !(w.PWT && w.PWT.displayCreative) && i<10){ w = w.parent; i++; } try{ w.PWT.displayCreative(document, '%%PATTERN:pwtsid%%'); } catch(e){} </script>
The text was updated successfully, but these errors were encountered:
Hello @QooYen , Are you facing this issue on any setup? So far we have not faced this issue with any pub setup. :)
Sorry, something went wrong.
No branches or pull requests
If the Wrapper creative is delivered within a multi-frames environment, it would not make it to the top window with
w = window.self.parent;
.w = w.parent;
could work instead.(Potential) Modified Wrapper creative:
<script type='text/javascript'> var i = 0, w = window.self; while(w!== window.top && !(w.PWT && w.PWT.displayCreative) && i<10){ w = w.parent; i++; } try{ w.PWT.displayCreative(document, '%%PATTERN:pwtsid%%'); } catch(e){} </script>
The text was updated successfully, but these errors were encountered: