113 Topics

Member Avatar for
Member Avatar for borobhaisab

Hello Programmers, We use the fragment in urls for the browser to hone in on a particular secion on our page. http://www.yoursite.com/#heading_number~1 http://www.yoursite.com/#heading_number~2 And so on. Now, we can easily open those particular sections in iFrames of your's or third party site's) that does not have a fragment {#) in …

Member Avatar for Naor
0
159
Member Avatar for borobhaisab

Hello Php Programmers, I want to open iframes, more than one, to some of my webpages from other webpages. What do I need to be careful off so no crook injects anything malicious on my site or on my visitors' clientsides ? Q1. Which of these attributes, mentioned in the …

Member Avatar for Dani
0
192
Member Avatar for BillWebber

Hi, I know some HTML but no PHP. I am just makign some hook pages for my affiliate stuff. One of side pages will be a simple version of "whats my ip". I have placed some copied code in the PHP file on my server space (test.php) and it returns …

0
223
Member Avatar for Simon_4

Hi There On this example page http://www.divepoint-samui.com/ I have an iframe: <h3>Our Happy Clients</h3> <div class="clients-wrapper"> <iframe src="http://www.divessi.com/extern/recent_certs.php/766494/2" frameborder="0" name="Our Recent Diver Certifications" id="recentDivers" ></iframe> <iframe src="http://www.divepoint-samui.com/ssi.php" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe> </div> Is there a way, that I can format this iframe, and instead to having a vertical …

Member Avatar for diafol
0
313
Member Avatar for reibi

Hello everyone, I was looking for a code like to store iframe's id in javascript's variable inside different divs. <div id="player"> <iframe id="SAR7KmiCHto" width="560" height="315" src="http://www.youtube.com/embed/SAR7KmiCHto?enablejsapi=1" frameborder="0" allowfullscreen></iframe> </div> <div id="player2"> <iframe width="560" height="315" src="//www.youtube.com/embed/9P9JSgZwrjc" frameborder="0" allowfullscreen id="9P9JSgZwrjc"></iframe> </div> In above code there are two div ids i.e player and …

Member Avatar for mangel.murti
0
307
Member Avatar for Sikander Nasar

I want to fix unsaving iframe in post, page n content of admin -panel.need urgent help.

Member Avatar for pritaeas
0
99
Member Avatar for ben.juarez.773

I'm trying to prefill webforms in iframes using Requests. If that can't be done, does anyone have a script I can use that works with webbrowser? I like that it calls the default web browser in just about any system, which is great for my Android applications. I've tried using …

Member Avatar for ben.juarez.773
0
314
Member Avatar for Suzie999

I've been working on a project using selenium 2 webdriver. Took me a while but finally got it working inside iframes of a web page. Thing is, I searched a lot and seen many examples but none that looked like what I ended up with, looks a bit weird and …

0
128
Member Avatar for tekagami

**Introduction** Lets say you have a website with a mobile version and a desktop version. Pictures can be resized proportinally using css on either version. But not all html tags resize proportionally, for instance: iframes. **Javascript Function** includes: the *id* of the iframe, the *original width* and *original height* See …

Member Avatar for Hicaro_1
4
856
Member Avatar for rimfirelive

I am having horrible formatting issues on the displayed page. I am trying to develop a template page that can be lunched from a link. This template page will contain the automated formatting to display the entire contents, of a "suppliers" website; while keeping the user within our site. I …

Member Avatar for rimfirelive
0
222
Member Avatar for os.kwesi

Hi, How can I automatically resize the height of an iframe such that it takes the height of an external website without showing the scrollbars. Thanks in advance

Member Avatar for almostbob
0
847
Member Avatar for keyroche

Hello. I am using an iframe in my page to submit a form to so that it can upload a file - since you can't do this through the jquery ajax function. I have everything working, but I want to be able to hide the iframe and get the content …

Member Avatar for kiranmaijalem
0
1K
Member Avatar for Dev7Cyber2012

**Please help,** I want my # scroll-up menu with CSS # only [without frame/iframe (I hate frame :'( )](http://tina-andrew.blogspot.com) and javascript ... I', trying to load my blog with all css' not others. (or, can I code others to be 100% validated in w3's validator? - I'm in my job …

Member Avatar for diafol
0
258
Member Avatar for mohan@nano

This is my code it will work on IE alone.. i want print the content in the firefox and chorme too ... anyone one can favour me <html> <head> <title>Example Report</title> <script type="text/javascript"> function printIframe(printf){ var clone=document.documentElement.cloneNode(true); var win=window.open('printf'); win.document.replaceChild(clone, win.document.documentElement); win.print(); } </script> </head> <body> <p>Hi! This is IFrame …

0
171
Member Avatar for mohan@nano
Member Avatar for elanorejoseph

Hi, i have script ,and i want to useit inside iframe ,does any one know how. for eg:<i frame src=""></iframe> is the normal way to use iframe. i wantto know cani use a script inside iframe.

Member Avatar for nauticalmac
0
217
Member Avatar for Nadeem_2

Hi folks I want to universal website crawler using PHP, so my crawler will work on any given site. By using my web application, user will input any site, will provide input, what he needs to get from given site and will click on Start button. Then my web application …

Member Avatar for cereal
0
400
Member Avatar for shivendu

How to get iframe inner content responsive. Or by reducing iframe size ie. width or height it should adjust the inner content as well. Any Idea ! Thanks in advacne

Member Avatar for stevedaniel
0
125
Member Avatar for TimiDani

Hello, I have an account in which logged in there is a 30 character-long text box. This text box is an information to others to see details about me. I would like to set a link (iframe?) link in order to let other click on it. I know that officialy …

Member Avatar for JorgeM
0
133
Member Avatar for <M/>

When i was playing around with `<iframe>` I noticed that it only works on specific browsers but if you view the site without the iframe, it works fine on the browser. Why is that happening? Does each browser have their own specifications or something? *I was playing around in a …

Member Avatar for <M/>
0
357
Member Avatar for woodenduck

How can I prevent a XSS attack but allow user to post iframe and img? My page is php based but I allow users to submit text and have allowed only iframes and imgs with strip_tag How do I prevent a user from launching an xss attack?

Member Avatar for woodenduck
0
324
Member Avatar for secretply

I have the following code executed on window load: var focuscheck = setInterval(focuswindow, 1000); $(anotherwindow).focus(function() { focuscheck = setInterval(focuswindow, 1000); }); $(anotherwindow).blur(function() { clearInterval(focuscheck); $("iframe:first", anotherwindow.document).on("mouseover", function(event) { focuscheck = setInterval(focuswindow, 1000); }); }); anotherwindow and focuswindow are fine so I won't post code for that. So this is how …

Member Avatar for LastMitch
0
653
Member Avatar for VNexus

Hi everyone, I really haven’t found much that would be fitting in a half decent or secure way on this issue, but... Let’s say I have a website called mysupportsystem.com and I've incorporated a third party cloud based ticketing system which is fed into the index page via iframe at …

Member Avatar for VNexus
0
495
Member Avatar for Szabi Zsoldos

Hi guys, I don't even know where to start, the ideea is that I want to develope an API that responds with certain data, but I don't have a clue for what to look. The ideea is that there is a panel like google analytics but with no stats, but …

Member Avatar for diafol
0
288
Member Avatar for hindu times

Hi there, I'm trying to alter the below iFrame code (which places a music player on my website) so that it resizes according to what screen people view it on. My website is fully responsive, and the div that I'm wanting to put it in changes width depending on what …

Member Avatar for iamthwee
0
279
Member Avatar for ngonix

Hello, I have a small issue with copying text from one textbox in main window to another textbox in an iframe. The code i have is as follows: index.html <html> ... \\JQuery Library Here \\JQuery Code <script> $(function() { $('#lastName').keyup(function() { var txtClone = $(this).val(); var rel = $("#listUnder").contents().find("#relationship option:selected").text(); …

Member Avatar for ngonix
0
1K
Member Avatar for sonicx2218

Had a question before that was partially solved. I'm having trouble getting just one part of it to work. preload = new Element('iframe', { 'src': URL, 'id': mediaId, width: mediaWidth, height: mediaHeight, scrolling : 'no', 'frameborder': 0 }); preload.style.visibility = 'hidden'; startEffect(); } So my issue is the preload.style.visibility = …

Member Avatar for Troy III
0
216
Member Avatar for sonicx2218

So I'm using mediabox which creates lightbox Iframes. I've modded it quite a bit, and there's just ONE last thing I want to accomplish. When the "popup" occurs, my site is still loading in the iframe; the process looks unproffesional. I have 2 key pieces of code, and I was …

Member Avatar for sonicx2218
0
361
Member Avatar for sonicx2218

I have a Js program where I want to hide ONLY the horizontal axis. scrolling : 'no', is the only command that seems to hide the scrollbars, but I want only the x to be hidden. Is there any x axis equivalent to this code? Thanks

Member Avatar for sonicx2218
0
235
Member Avatar for sonicx2218

I'm using the app mediabox which lets me create iframe lightboxes. I don't want horizontal scroll on the iframe, just vertical. The issue is I have NO idea how to add a new class in the CSS of the program to achieve this. Here is the css. #mbOverlay { position: …

Member Avatar for sonicx2218
0
246

The End.