Most voted "iframe" questions
A `element element` <iframe> </iframe> allows the placement of an embedded "frame" within an HTML document, which allows the display of another separate document. Any content between the beginning and near the `element tag` <iframe> is ignored</iframe>
Learn more…209 questions
Sort by count of
-
0
votes0
answers173
viewsHow to enter email and password inside Iframe input?
I want to know how to insert a value inside the text field inside an Iframe. For example, at this link, there is a simple login. In it, my boss asked me to do the iframe and leave everything typed…
-
0
votes1
answer1292
viewsBest option to replace IFRAMES
I am currently working on the development of a platform with many different functionalities and pages, we are using IFRAMES to save repeated loads (Menu, shortcuts, etc), however the use of IFRAMES…
-
0
votes1
answer210
viewsReload iframe inside a modal
Look at my scenario. On the parent page I have 3 Ivs. modalFilha2, modalFilha2, modalFilha3 on which I will call according to the page I am. When I am in the father the links call the file1 and add…
-
0
votes1
answer2495
viewsWhen calling an iframe inside a . php file, how to send a variable and receive it on the page pulled by the iframe?
I have an index.php page that contains the following script: <html> //cabeçalho... <div id="conteudo"> </div> <script type="text/javascript"> $(this).on('load',function(){…
-
0
votes0
answers21
views -
0
votes1
answer11293
viewsHow to hide the iframe scrollbar?
Because this command is not working? I wanted the scroll bar to go away. I’ve used width: 0px; in place of display: none; but it didn’t work either. <!DOCTYPE html> <html lang="pt-br">…
-
0
votes0
answers35
viewsExpress.js check if request is made by iframe
How to check if request is made by iframe in "express js."? Example: WEBSITE TO: <iframe src="http://siteb.com/router"> site B: app.get('/router', (req, res, next) => // logica... }) The…
-
0
votes3
answers110
viewsInsert Tags from Console
I need to insert Tags on a site by console. To be more specific, I want to add a TAG <iframe></iframe>. I’ve tried using the document.createElement('tag'), after that add the tag…
-
0
votes1
answer189
viewsHow to copy div from iframe to parent? (replicate) can be using ajax, jquery, javascript
I have an index.php that does a post in.php content, and takes the result and writes to the div #content inside index.php. Post: <script type="text/javascript"> $(this).on('load',function(){…
-
0
votes2
answers313
viewsDetect click over an iframe
I have an iframe: <div class="recebe_iframe"> <iframe class="caixa_iframe" src="https://www.youtube.com/embed/dfsdfsdf" frameborder="0" allowfullscreen></iframe> </div>…
-
0
votes0
answers38
viewsScrolling page when loading Iframe
I have a page where this has an iframe for an application, the page loads before the iframe, when the iframe application loads, the whole page where the iframe automatically scrolls down, I do not…
-
0
votes1
answer53
viewsDoubt with Iframe
I’d like a little help with something apparently simple. Can anyone tell me if it is possible to load the contents of an Iframe only when it is available for viewing in the browser? That is, when…
iframeasked 6 years, 11 months ago Luiz Aralan Leite 1 -
0
votes1
answer47
viewsHow to change the CSS in this case?
Good morning everyone! Being very objective. I want to change the CSS of two different pages at the same time, with an on/off button on one of them, and make this change in all of them, but I have…
-
0
votes1
answer1565
viewsBlank iframe
I need an Iframe on my site. My site has HTTPS protocol, and the source of Iframe also. So why doesn’t my site display it? Both sites have certificate. <!DOCTYPE html> <html class="no-js"…
-
0
votes1
answer683
viewsRemove an iframe element
Good morning, I am trying to remove an element that is inside an iframe, I am even trying to add a class via jquery but without success, I have tried to use jQuery load, setTimeout and onload by…
-
0
votes1
answer110
viewsIONIC - CHECK IF AN IFRAME HAS BEEN LOADED 100%
I’m embedding an iframe with a google maps link inside my Onica application, how do I check if the frame was loaded 100%? Because, depending on the user’s internet connection, it may take a few…
-
0
votes3
answers1400
viewsChange Javascript Window.Open to open an Iframe
I have this javascript, and I want to do that instead of opening a new window, it opens an iframe. window.self.name = "emanager"; function MostraBarra(){ if (document.incluir.balancete_arquivo.value…
-
0
votes3
answers65
viewsLink that opens the "content" in the next div
all right? I have two div in content. The first div has two links. By clicking on the link I would like the result to appear in the second, in case a page in php or html. Example: How can I do that?…
-
0
votes2
answers288
viewsHow do I make iframe "clickable" anywhere on the page?
Assuming I have a youtube video in an iframe on my website, how would it be possible to play the iframe by clicking anywhere in the body of the page without having the iframe take over the entire…
-
0
votes0
answers125
viewsIframe shows system on localhost - PHP
Good morning I’ll try to explain my situation and see if there’s a solution. I have a server that runs a java web application that I want to run only on localhost. Yet, on this server, I have a PHP…
-
0
votes0
answers81
viewsAsynchronous upload of videos
I have a page with several videos that comes from Youtube, that page takes a considerable time to load and on older computers, the page stays locked until everything is loaded. Is there any way to…
-
0
votes0
answers122
viewsInsert image from another php iframe folder
A webapp of calls. The person will open the call and has the option to take a photo as evidence. This photo will be sent to the server and its path stored in the database and variable $destino in…
-
0
votes1
answer276
viewsCalling the parent’s Javascript function from within a daughter iframe that is not in the same folder as the parent
I have the following scenario: A parent file is calling an iframe daughter. the father and daughter are in completely separate folders. I need the daughter to call in javascript a function, also in…
-
0
votes1
answer79
viewsHow to make changes using jQuery within an iframe on another domain?
Hello I need to upload a partner site within my site. However I would like to make changes to the stylization using jQuery preferably. I found the solution below to manipulate the elements.…
-
0
votes0
answers93
viewsResponsive HTML5 banner does not work
I am trying to include a responsive banner on my site (wp 4.9.6), following a guide I found on the internet (I am amateur). Banner loads normally on desktop and responsiveness works on some Android…
-
0
votes2
answers115
viewsIs it possible to change the "href" of the <link rel="stylesheet"> of an iframe or even change the class/style an iframe element?
I need to change the CSS of a iFrame, but researching here, I discovered that it is not so simple as, soon, I saw that the iFrame that I wish to stylize, has a <link rel="stylesheet"…
-
0
votes1
answer34
viewsHow do I hide the page scroll bar in css?
iframe#frame-spec { width:400px; height:280px; border: none; overflow: hidden; } iframe#frame-spec::-webkit-scrollbar { display: none; } …
-
0
votes1
answer221
viewsAccess the contents of an iframe via javascript
I have an html document named frame.html with the following code: <html> <head> <title>frame</title> </head> <body> <span id="teste">teste</span>…
-
0
votes1
answer24
viewsSite anchor in iframe moves the main page
Hello, I have a website where I have a timeline that I’ve set up, when I click every year of the timeline, the iframe below it moves towards a specific text on the page, the problem is that…
-
0
votes0
answers17
viewsdisplay specific content in HTML iframe
I have in the "page1.html" two div Example: <div id="teste1">teste1</div> <div id="teste2">teste2</div> in "page2.html" I have an iframe and in it I want to display only one…
-
0
votes1
answer514
viewsUse iframe Angularjs variable
I know that there is a question similar to mine, however the use was different and did not give the right example that it was mentioned. I need to take a variable from my database that has the url…
-
0
votes1
answer177
viewsSection above the video, using toggle
Guys, I want to leave a video on the home page of the site that I’m creating with HMTL AND CSS, but when I click on some option from the sidebar menu, Serction will transition over my video, in case…
-
0
votes1
answer100
viewssrc iframe error
my code: <div class="col-md-3 col-sm-4 col-xs-6" *ngFor="let g of gag"> <div *ngIf="g.tipo == 2"> <iframe width="280" height="162" [src]="g.caminho" frameborder="0" allow="autoplay;…
-
0
votes1
answer342
viewsHelp with Responsive iframe formatting
Hello I need help I have a google form that I want to put on a page with the format of 1280*800 and the problem and that does not occupy the page completely hides always or at the end of the form or…
-
0
votes1
answer101
viewsEmbedded iframe from another site - 100% of the screen
They gave me a code to embed in my site, but it generates an iframe and does not occupy 100% of the screen. #areaCondominio { width: 100%; background: red; h1: blue; } #testenov { width: 100%;…
iframeasked 6 years, 4 months ago Junior do Amaral Santos 13 -
0
votes0
answers195
viewsEmbedded videos in a responsive way
Good morning, I am developing a website and through it you can incorporate videos from both Youtube and Facebook. Youtube videos adapt perfectly according to the size of the div, the problem is even…
-
0
votes0
answers1885
viewsHow to hide top bar (title and logo) from Youtube iframe
After the Youtube API Update in September, the "showinfo=0" command stopped working in iframes. Is there any way to hide this bar from the top (Title, logo, share and view option later)? Another…
-
0
votes0
answers45
viewsProblems with "Back Button" in browser
You guys, it’s okay? I need a lot of help, actually I don’t even know if that’s possible. The thing is, I created a page that has an iframe, so far so good, the problem is when I click the back…
-
0
votes1
answer31
viewsProblems with AJAX return
<script type="text/javascript"> $(document).ready(function(){ $('#btn_busca_f').click(function () { var data_ini = $('#data_ini').val(); var data_fim = $('#data_fim').val(); var cod_recurso =…
-
0
votes1
answer92
viewsiframe with designMode get generated html inside the iframe?
Guys, I’m wearing a iframe together with Javascript to create a text editor as described below: <iframe scrolling="auto" class="MINI_EDITOR" name="MINI_EDITOR"> And the Javascript code is…
-
0
votes0
answers28
viewsAttempt to insert value via "attr"
I’m creating a page that will simulate a website in the mobile version. After filling in the URL field, the site will appear in an "Iframe". The problem is that when I enter the URL into the field,…
-
0
votes1
answer335
viewsExit an Iframe Selenium Pyhton
I’m having a hard time... I have a page to manipulate with Selenium, my problem is Iframes. I access a main Iframe and within that main iframe I have other iframes to manipulate, my porblema is that…
-
0
votes1
answer1977
viewsiframe :Failed to Launch <link> because the Scheme does not have a Registered Handler
I’m coding a project in html and Linkei a google form to the boot of vacancies, more when I click to open the form on an android device it does not open, I searched on the internet the error but it…
-
0
votes1
answer109
viewsEvent/method that expects content from an iframe to be fully loaded/rendered
Hello, I am developing an html page, and in it I want to execute an iframe with another page (text) link, iframe takes about 2 to 3 seconds to be rendered/loaded, and I want to put an animation of…
-
0
votes1
answer100
viewsDisable links in an iframe
I am unable to find a solution that disables links within an IFRAME. I’ve seen on the web the option to use a pointer-Events: None; within CSS. This works, but ends up making the scroll of the page…
-
0
votes0
answers68
viewsHow to stop youtube video when you click a button?
I’m making a website with React and I have a carousel with some Iframes with youtube videos, when I slide to the next video the previous one is still playing. Is there any way with Jquery or JS to…
-
0
votes0
answers8
viewsequivalent of Qwebenginesettings::setUnknownUrlSchemePolicy() to QT 5.9
I’m using the tensorboard to open the projector and continue with the evaluation of my code, when I open in a common browser it works perfectly, but using the qwebengine the reality is different, it…
-
0
votes0
answers71
viewsScript to click a button inside an iframe?
Good morning! I’m trying to create a pro Chrome extension to click a button each X seconds. The problem is that the part of the page that needs to run the script is inside a iframe and it doesn’t…
-
0
votes0
answers36
viewsHow to detect changes in an iframe’s innerHTML and run a function with Mutationobserver?
I’m creating an extension for Chrome and I need it to detect (within an iframe) when an object’s innerHTML is changed and performs an action, example: button.click();. How can I create this…
-
0
votes0
answers37
viewsIframe connection refused
I want to implement an android app from my online site, make a webview, however when trying to pass the link from my site to iframe from Appe try to show the content of the site in the refused…