An `iframe` is an HTML element that creates an "inline frame" within a document.

learn more… | top users | synonyms (1)

0
votes
1answer
10 views

Change iframe parent while playing embedded youtube video

I want to change the parent of an iframe which is used for embedding a YouTube video. When I change the parent: Firefox and Chrome: Player stops playing and displays a new (stopped) player in new ...
0
votes
4answers
64 views

How to show some HTML that was generated by Javascript

Here is the initial HTML, it is fairly small. It's only meant to be the loading screen. <html> <head> <title>Simple Hello World</title> <link href="rapid-ui.css" ...
3
votes
1answer
28 views

How can I programmatically access images displayed in a web page to upload via a bookmarklet? (ie not not drag and drop)

Since clipboard is shutting down, I decided to build a similar, but simpler bookmarlet as a side project to save pages I'm interested in. All I'm really trying to do to start with is save the html, ...
2
votes
1answer
42 views

Create a swipe between pages with CSS and JQuery

I'm trying to mock up a smartphone swipe navigation in HTML+CSS+JQuery. I'm setting few iframes that includes my HTML pages and then swipe between them from a navigation menu. that's nice, but I want ...
0
votes
0answers
9 views

Local fonts can't load in iframe in IE, Chrome and Opera

I've been writing a page that is intended to be used without internet connection. There is an iframe with text which should be styled with custom font. The font does not load if I try to get it from ...
1
vote
3answers
22 views

Why Iframe dosen't work for yahoo.com

I find this doesn't work: <iframe src="http://www.yahoo.com"> </iframe> I have read this question, but I don't understand what they mean by add: <?php header('X-Frame-Options: ...
1
vote
1answer
15 views

on ipad once loaded youtube video freezes all other keys until played

I am using the following code to load a YouTube video. jQuery(document).ready(function() { $("#LOAD").click(function(){ data = '<iframe id="placeHolder"> </iframe>'; ...
0
votes
2answers
28 views

Get innerHTML of iframe loaded in chrome background page

I'm loading a webpage inside iframe of a background page in chrome extension. I need to fetch the content (i.e. DOM) of iframe. I'm getting protocol error. how to overcome this situation, any ...
0
votes
1answer
15 views

couldn't display pdf file in my iframe in .net web application?

I have to display a pdf file in an iframe control in .net web application.But when I run the application it could not load the pdf file in an iframe control. I don't know the reason for this... This ...
0
votes
0answers
14 views

which SSL is used when embedding a form in an Iframe

I'm embedding a credit card form on my website using an iFrame. My site and the site that is hosting the form have SSL. but which SSL is being used during the interaction with the gateway. Is there ...
0
votes
1answer
45 views

two divs with display:inline-block - second div with iframe ad being pushed down a few pixels

Background: working on a responsive redesign. normalize.css used for reset. DFP Ads inserted into div's using this technique. The ad container div's are hidden depending on window size and the ad ...
1
vote
1answer
27 views

Load a page in an iframe using URL or php

I hope this isn't posted anywhere because it's too obvious. On my website (Robo Co.) I use two iframe elements with the names iframe_r and iframe_l. I would like to know how to create permalinks to ...
0
votes
0answers
21 views

IFrame Request with SessionID and Response of Secure Session Token

I have never dealt with session handling to this detail before. And I am stuck. Request POST: URL : blablabla.com Content: ...
0
votes
0answers
19 views

Limit the impact of the css

How i can limit the impact of the css to my selectors? For example i include my script on many sites. Script add the div,and some site can rewrite styles for my div, or add new. How i can protect it? ...
0
votes
2answers
19 views

Is it okay to insert an <iframe> into the page's content?

Using a content script, I plan to insert a UI into the page in an <iframe>, but I have a few concerns. Do people commonly use settings/extensions to block iframes on the page? If my ...
0
votes
1answer
24 views

jQuery .each loop pausing for iframe to fully load

I need to pause the .each loop giving the iframe time to load. Is there a way to do this? I've researched callbacks and so forth with no luck. I don't want a timeout because I need to make sure the ...
0
votes
1answer
20 views

YouTube iFrame API bug in Mobile Safari

Using the YouTube iFrame API to embed a video I have come across a strange bug. The bug is only apparent on Mobile Safari (iPad3, mini and iPhone) No matter what I do to set a specific height or ...
0
votes
2answers
11 views

Remove body margin on TinyMCE

I'm using TinyMCE for a content editor and it adds an 8px margin to the body. I've went into the stylesheets and changed the body margins to 0, even added body { margin:0 !important; }, but it will ...
2
votes
1answer
20 views

Print a PDF via an iframe in Chrome/Firefox/IE

I want to trigger the print of a PDF file which I load in and iframe. After looking around, I came up with the following bit <iframe name="pdfname" id="pdfid"></iframe> <button ...
0
votes
1answer
33 views

load page inside page with iframe

I am working on a django project (but I think it is nothing to do with django). On one of my web page, I want to load another page into an ifame element. So basically, it is 'page inside a page'. I ...
0
votes
0answers
12 views

javascript modify document without getting previous state stored to undo buffer

I wonder, Is it possible to modify a, let say, iframe inner document without having its previous state saved on undo buffer. I have a little WYSIWIG editor, which removes unsupported formatting from ...
0
votes
2answers
52 views

Get URL of iFrame

Just wondering if anybody had any ideas on getting an iFrame's URL using possibly jQuery. For example, if I have an iFrame on my page and somebody is scrolling through the website inside that iFrame ...
0
votes
0answers
9 views

Iframe src base64 encoded not working as expected

I'm trying to set an iframe with the src encoded, in this case base64. This is kinda of what i want to do. Note: there's nothing wrong with the link, this is just an example. <?php $src = ...
0
votes
0answers
17 views

How to fix scrolling of iframe in IOS safari

I have a problem related to scrolling of iframe in iPad-Safari.I am developing a web application, which contains some nested iframes and I am not able to scroll content inside the iframe in IOS ...
0
votes
0answers
9 views

How to send the large parameters to child page(iframe) from parent page with cross domain?

Please help me. Target I'd like to pass the lots of parameter to iframe from parent page with cross domain. Problem The limits of number of characters on URL with IE is 2083. So, I'd like to send ...
0
votes
0answers
4 views

iFrame content doesn't load with the sandbox attribute used

I have an iFrame page whereby a video is supplied by a third party from their server. The video plays completely fine if I don't use the sandbox property. However, if I use sandbox, it doesn't work, ...
1
vote
0answers
17 views

Selecting a range of text via javascript in an iFrame

i have some sentence in the iframe. now i have to select somerange of text. Now my iframe have the text as "thankyou". via the javascript code i have to select the word "you" alone. i calculated ...
1
vote
1answer
29 views

make links within an iframe replace parent document

I'm having a web-site where most of the content will be loaded in a full-sized iframe. I don't control the iframe itself, only the parent web-site that references the iframe. When someone clicks on ...
2
votes
0answers
18 views

Iframe reloaded, how to scroll parent page to top with Scrollpane

Thanks for your indulgence, it is my first question on here!... I have iframed a tumblr blog on a website. I am using scrollpane. See here http://danmccarthy.net/news/ My problem is that the buttons ...
1
vote
1answer
78 views

Embedded youtube videos viewing with iOS 6 - links after iframe not clickable

On my iPad and iPhone both running iOS 6.1.3, I cannot view links that are placed below an embedded youtube video. Here's an example: <a href="http://xenforo.com/community/">Xenforo</a> ...
-1
votes
0answers
5 views

like box only appears connected to facebook for www.facebook.com/NeteCentavos

When you are creating a like box, in the url: https://developers.facebook.com/docs/reference/plugins/like-box/, and using as url parameter: www.facebook.com/NetCentavos, the box appears only when you ...
0
votes
0answers
29 views

How to replace string with preg_replace for correct working BBcode?

I don't ever knew php, but somehow i've done BBcode for soundcloud audio player. So, in administration panel you click button to enter url of song. When parser turning this: [soundcloud=url] To ...
0
votes
0answers
8 views

FancyBox with iframe misrendering

I added fancybox to a page to display a youtube or vimeo video when a person clicks on a thumbnail. When the popup opens everything looks fine but if you scroll on the page instead of staying in the ...
0
votes
1answer
15 views

html5 iframe for nearly full screen?

I was looking into using a frameset on my otherwise XHTML 1.0 Strict site, but I've noticed that with HTML5 the frameset feature is obsolete, and an iframe should be used instead. I need to load a ...
0
votes
0answers
13 views

show different iframes based on page selected from dropdown

I have asked this quesiton before but no answer from anyone. I am caluclating the height of iframe dynamically based on content but having issues when loading a page that is having instead of tag in ...
0
votes
0answers
24 views

Youtube/vimeo iframe won't play in firefox

I am embedding a youtube/vimeo video onto my site with an iframe. <iframe src="http://www.youtube.com/embed/{$entity->getYoutubeVideoID()}" ...></iframe> The ...
0
votes
3answers
24 views

Determine Pragmatically the width of a div inside an iFrame via jQuery (or voodoo)

I have a div. That div lives inside an iframe. That div has a width. I would like to get this width via jQuery. Attached are some of my adventures in doing so. Please enjoy! ...
0
votes
1answer
62 views

The iframe “src” attribute issue

I am trying to document.write something inside an iframe. I asked a question about that(Is it possible to write something in a iframe when a button outside the iframe is clicked?), and got some ...
0
votes
1answer
16 views

Make Google Viritual Tour embeds automatically rotate?

<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" ...
0
votes
0answers
17 views

Replacing frames in an existing web app

Situation: We have an Intranet webportal that has been developed and has been handed over to me. The portal is in classic ASP, and involves a lot of work over the last 5-8 years. migrating to .Net ...
0
votes
1answer
8 views

iframe in console application

I have made a console application in Composite C1. This console application shows a list of dataitems. When you edit a dataitem it will show a tab with the information from the dataitem. On another ...
-2
votes
2answers
29 views

Calling function in javascript to change iframe src [closed]

So a script calls this function atomSpeak('Phrase goes here') Which triggers this script: <script> function atomSpeak(phrase) { { var q = getValue("q"); // getValue comes from another ...
2
votes
0answers
29 views

Issues with using an iframe to show chrome extension UI on a web page?

I am developing a chrome extension that is meant to work on all web pages. As part of its functionality, it needs to show a UI on any given page. Currently, to do this, I append a div (containing ...
0
votes
1answer
17 views

Adamant Iframe width

I am developing a webpage which carries an iframe inside a div. I cannot make the iframe strech across full width of its parent div even after making width 100% in CSS. I am doing something wrong. ...
0
votes
0answers
19 views

Floating iFrame Content

I have a page with an iframe inside it. And inside the iframe there are a floating sidebar element which the css are fixed upon scroll. Is it possible for the floating element inside the iframe keep ...
0
votes
2answers
32 views

Set the Iframe width and height to 100% as per page size Not working

I have tried following code. But it is not showing the iframe in proper way. Height and width of Iframe is very small. Iframe should take the height and width as per page size. <html ...
1
vote
0answers
10 views

Copy canvas element from ThinVNC viewer as iFrame

I want to copy canvas element from within iFrame that shows virtual machine content. I saw that there was a lot of Q&A about "clone canvas from iFrame". Unfortunately, I'm not familiar with ...
0
votes
1answer
5 views

rails adding a iframe from youtube in to a string

Am trying to add a youtube embedment to a string(video.link) but it crashs my app am using redCloth to handle the html output. Not sure what to do with the passenger error, can anyone help? error ...
0
votes
1answer
35 views

Close Iframe With Jquery?

I know there are a lots of questions like this, but we're already knew that each cases are not like each other. So, this is my case : HTML OUTPUT: PAGE 1 <div id="login-embedded" style="height: ...
0
votes
1answer
19 views

Yotube video quality change using CSS media queries

I'm trying to use iframe embedding Youtube video on a responsive design webpage. How can I let the widest page comes with heigher resolution video (with parameter &vq=hd1080 )? Now I have ...

1 2 3 4 5 204