iframe Questions

4

I'm trying to find a way to encapsulate Javascript without using iframes. Ideally, I'd like a way to load external HTML components (widgets) on a parent page, without the two-step loading process, ...
Inchworm asked 14/2, 2015 at 16:4

3

So SharedArrayBuffer was recently limited to Cross-origin isolated pages as a security fix. We have a tool that depends on SharedArrayBuffer, I reworked it to work again by moving it to a barebones...
Gromyko asked 20/10, 2021 at 19:31

3

Solved

I want to prevent my website from clickJacking attack. In which file and where to set X-Frame-Options for preventing clickJacking attack.
Ambrosane asked 28/5, 2020 at 7:38

6

Solved

How do I use javascript or jQuery to close an iframe within iframe itself? I've tried <a href="javascript:self.close()"> but it didn't work.
Hillell asked 19/7, 2011 at 22:35

10

Solved

Some websites have code to "break out" of IFRAME enclosures, meaning that if a page A is loaded as an IFRAME inside an parent page P some Javascript in A redirects the outer window to A. Typically...
Elate asked 15/12, 2008 at 19:50

3

I have an iframe on my website that loads a PDF file : <iframe src="file.pdf" frameborder="0" width="800" height="600"></iframe> But it's downloaded automatically , I want to view th...
Well asked 10/2, 2018 at 3:7

3

Solved

I'm trying to call parent.postMessage(obj, 'whatever'); from within an iframe and I'm getting this error: Uncaught DOMException: Failed to execute 'postMessage' on 'Window': An object could not...
Bleier asked 21/2, 2017 at 19:40

3

I need to embed the following code on a self hosted Wordpress installation - <iframe id="slydy" style = "border: none; max-width: 100%; min-width: 100px;" src = "http://slydy.co/users/TCC/...
Manful asked 20/6, 2015 at 8:20

3

Solved

Using AngularJS, Im trying to load the "myLink" URL address to iframe in another html. data.No is the id that i pull from another place and works fine (get the Id that i need for the url) in the c...
Spotty asked 18/11, 2014 at 8:46

3

Solved

I use this javascript to load a webpage that is scrolled to the area I need into an <iframe>. But whenever the given iframe loads, the viewport instantly jumps to that point, just like I used...
Chromous asked 22/1, 2013 at 18:19

7

Solved

I have a widget distributed in some sites via an iframe. But I don't want the google bot index the url. Will adding a nofollow to iframe tag resolve the problem?. Does Iframe tag support nofollow, ...
Odetteodeum asked 26/9, 2012 at 21:57

4

Solved

I use the media embed plugin for ckeditor. It works fine, the code is correctly saved in the database and youtube, soundcloud etd. players display ok on the page. But when the user goes to his admi...
Murrelet asked 7/6, 2013 at 3:39

2

I need to pass large blobs of data between the main page and embedded iframes. In order to avoid [de]serialization overhead, I would love to pass ArrayBuffer with postMessage() and instantiate view...
Accouter asked 24/10, 2017 at 12:50

5

I want to disable iframe embedding pages, from my website to other websites and I make this js: <script type="text/javascript"> if(document.referrer.indexOf("mydomain.com") != -1) { window...
Pastille asked 2/12, 2016 at 17:9

15

Solved

If I create an iframe like this: var dialog = $('<div id="' + dialogId + '" align="center"><iframe id="' + frameId + '" src="' + url + '" width=&quo...
Coppinger asked 8/12, 2014 at 13:20

13

<iframe id="id_description_iframe" class="rte-zone" height="200" frameborder="0" title="description"> <html> <head></head> <body class="frameBody"> test<br/>...
Acquaint asked 29/5, 2009 at 16:30

3

I have been running into an issue where I modified "PUBLIC_ROLE_LIKE_GAMMA = True" in both superset/config.py and added the datasource to PUBLIC as per the link suggested reference in goo...
Mangan asked 22/7, 2020 at 10:18

7

I got a warning by my ad system provider about click fraud. No further info, all they are recommending is "hide the ads for users who click on ads too quickly'". I wrote a piece of JS script that h...
Ailina asked 30/3, 2015 at 2:1

5

Solved

I'm building a Web Extension that injects a local page and I reached a strange Chrome limitation on some websites: I can't set the iframe to be transparent: Try this on GitHub.com (after login) or...
Morris asked 15/10, 2021 at 22:12

4

Solved

There are plenty of examples showing how to dynamically set an iframe's height to its content. This works perfect for me. The problem I'm now having is that the content can change size without trig...
Fiasco asked 22/12, 2010 at 20:8

2

When a user prints, my server generate a PDF, and I do this to show the print dialog for the PDF. $('<iframe type="application/pdf"></iframe>').attr('src', url).load(function() { var ...
Unanimity asked 14/3, 2014 at 18:35

4

I am developing a responsive web page using bootstrap framework, and I want to put a responsive iframe. The bootstrap docs says that I can put a responsive 16x9 aspect ratio iframe using <div...
Spinach asked 17/7, 2014 at 21:34

16

I have a web app which uses localStorage. Now we want to embed this web app on other (third-party) sites via iframe. We want to provide an iframe embed similar to youtube so that other websites can...

7

Below is my code: <div style="border: solid 1px #000000; margin: 5px;"> <iframe src="http://www.w3schools.com" width="100%" height="300px" scrolling="yes"><p>Your browser does ...
Thrum asked 22/8, 2013 at 6:54

13

I have an iframe that takes up the entire window (100% wide, 100% high), and I need the main window to be able to detect when the mouse has been moved. Already tried an onMouseMove attribute on th...
Dodge asked 13/4, 2011 at 6:54

© 2022 - 2024 — McMap. All rights reserved.