I'm looking for something similar to the VB6 / .Net Winforms "Browser Control", that let's you show a browser inside your application.
I don't want to just render a page, I want it to be a fully-functional browser, in which people can click links, will run Javascript, etc.
In essence, what I want is an IFrame, only that it runs inside a...
Coles Notes version:
index.php?map_id=foo is loaded into iframe on www.not-my-domain.com. index sets SESSION['map_id'] = foo. Flash file tries to get SESSION['map_id'] thru Authenticate.php, but Authenticate.php has no values set for any SESSION varaibles.
-- Only first-load, cross domain issue.
Verbose:
I have an index while where I...
Hi All,
I have a problem with html code. I have tried many solutions but i haven't solved my problem.
Excatly my problem is ;
if i used two div inside of html page and both divs must be contains iframe element, i have never seen correct html page in browser.
Note : each div must have position:fixed css attribute.
Example code :
<...
Is there a way to find the selected text in an HTML document if the text may be within one of its frames (or iframes)?
If the document has no frames it's simple:
var text;
if (document.getSelection) {
// Firefox and friends
text = document.getSelection();
} else if (document.selection) {
// IE
text = document.selection.createRange...
At cbjsonline.com, I'm trying to have a pdf in an iframe print automatically with javascript.
Currently, my code is - (connected to the onclick of the link that opens the iframe) - document.getElementById('fancy_frame').onload = setTimeout('window.print()',2500);
Any suggestions? This method only works in safari.
...
I have a web page with an iframe in it (I don't like it, but that's the way it has to be). It's not a cross-domain iframe so there's nothing to worry about there.
I have written a jQuery extension that does the centering of a ModalPopup (which is called from an overridden AjaxControlToolkit.ModalPopupBehavior._layout method) based on t...
Does the IFRAME's onload event fire when the HTML has fully downloaded, or only when all dependent elements load as well? (css/js/img)
...
I'm trying to post to the login form of an application on another subdomain of my site. It's a third party app that I don't have source access to.
I know that you can't access most features of a cross-domain iframe because of same origin policy. All I need to access, however, is the URL that's been redirected to (via JavaScript) within ...
I need solution for auto adjust width height of iframe to fit with content in it, and the point is the content size (width, height) could be change after iframe loaded. I guess i need a event action when body size changed.
...
I'm changing an IFRAME's src in order to reload it, its working fine and firing the onload event when its HTML loads.
But it adds an entry to the history, which I don't want. Is there any way to reload an IFRAME and yet not affect the history?
...
Hi, I have a page with a list of links and a div which serves as a placeholder for the pages the links lead to. Everytime user clicks on a link an iframe is created in the div and its src attribute gets the value of the link href attribute - simple and clear, sort of external web pages gallery.
What i do have a problem with is printing ...
I've got a Facebook iframe application that is completely external. By this I mean that once a user accesses the canvas URL to load the application, all the links in the iframe app go to my servers, and the canvas page never gets refreshed unless the user navigates to somewhere else on Facebook and comes back (or does a browser refresh)...
I'm editing some existing html where the javascript loads a another page inside an iframe. In the page is an html form. When I hit submit, I'd like for the outer page to stay and the iframe to change to the results page. However, right now the whole page changes to the results page for the form. I'm guessing there's a way to solve this j...
I understand that cross site scripting (xss) is not good and is not supported in most browsers. However, I am building a page to be used only by about 3 or 4 people within my company. On this page I have a frame from another domain and I need the parent page to be able to access the values within that frame.
So my question is, is ther...
Loading javascript in iframe like gmail loading javascript in hidden iframe(js_frame)
and make it context sensitive.
...
Hi there,
I'm a little stuck, it's due to my inexperience with html/css and iframes.
Basically, I've got a LH column, which is my menu. and a RH column which house's my content. the RH column is a iframe.
The problem is i can't get the height of the iframe to equal 100%, it's constrained by the height of the LH column.
See below;
h...
I am attempting to mimic a pretty simple feature of Facebook. When you click on a link someone has shared, you're taken to a page that has a Facebook toolbar at the top and the actual page loaded below it within an iframe. The url I'm using has parameters that are being passed, so it ends up being:
<iframe src="https://example.com/login...
I'm getting a very weird drawing bug in Safari, and i would like to see if there's any workaround I could take...
I'm currently displaying a <div> (absolutely positioned, high z-index) on top of an IFrame that displays contents from other sites. Just for context, the <div> is a toolbar we show over other sites.
This works well in all b...
I have a page with an iframe. In the iframe is a form targeting that frame. The submit button is down near the bottom but the results page is short and appears at the top. So when the user hits submit, the form disappears but they don't see the results because they are scrolled down too far.
Instead of just putting a bunch of whitespace...
Hi, I have user preference (colour, locale settings) on example.com that I would like to migrate to example2.com
I'm wondering if I can use AJAX or a hidden iFrame to pass the cookie information from example.com to example2.com which will then set another cookie with the same information on example2.com.
I know I could do this easily t...