Hello, I am using an iframe right now.
This is not my first choice and I generally try to avoid them, but the problem is the client has different versions of their middleware on different boxes and is reluctant to upgrade one of them.
Anyway, now that I've made my excuses. :)
I am trying to display a pretty sizable page and there is sc...
Can anyone tell me how this is done? I worked out how to do it for a standard users page (I simply set
protected void Page_PreInit(object sender, EventArgs e)
{
base.RequireLogin = true;
}
I can't work out how to do it for a page. Can anyone help plz?
...
I scaffolded a test app and got a Routing error when I put an iFrame inside my view:
This is the show template where I added the iFrame:
views/bars/show.html.erb:
<p>
<b>Body:</b>
<%=h @bar.body %>
</p>
<iframe src=“http://www.yahoo.com” style=“width:500px; height:500px;” frameborder=“0?></iframe>
<%= link_to 'Edit', edit_bar_p...
I have a page with two iframes; a slideshow and an ad. Is is possible to have the slideshow iframe call a function in the ad iframe?
Thanks!
...
So I would like to include pageTracker code in the iFrames that is being called.
However the iFrames in this case are called from Flex. We are building a pop up and calling the iframes within the pop up.
In this scenario, what is the best way to include the pageTracker code to track and trasnfer the visitor and campaign cookies from on...
Hey i am wondering if their is a way to get the URL of the page showen in a iframe with php or javascript. i want it so that when i user clicks a link in the iframe so it isnt the initial iframed page then clicks another button that button it will get the new URL of page that is currently in the iframe. thanks
...
I have a widget that is added to random websites. The widget needs to fill an iframe with content. I need the iframe source to be from the same domain as the website it is embedded in.
To do this I want to ask the site owners to put a file in their root folder that will be used as a proxy to my server.
My question is -how can I impleme...
How do I get rid of the vertical scroll bar in the iframe? See here:
http://lambodhara.tumblr.com/
The code is:
<iframe width="560" height="350" frameborder="0" scrolling="no" src="http://zleek.com/champ1979/navarathri-2009?embed=true&page=0"></iframe>
...
I want to catch clicks that occur anywhere in an iframe. I can not directly access the iframe because it contains content from another domain. So how would I do that with jQuery? Somehow calculate if the click occurred in the area of the iframe? The iframe should stay totally accessible as it contains links etc.
...
I have an IFrame within my page and am using the designMode="on" on this iframe for a small-level rich text editing.
My concern is that I need not allow the user to enter new lines in it - meaning, I want to restrict enter keys.
I did it using the question posted here to listen to the keypress events. But in my keypress event, if I ret...
I am setting up a website for students of a school, which must include a schedule page which will show a calendar with events populated by feeds from various teachers' calendars. After trying out a variety of scripts and tools made for showing calendars, I finally hit upon a very shoddy, hacked-together way of doing it, and I want to kno...
My site frames content like DiggBar and the Facebook share bar.
If a user wants to break out of the framed content, and visit the underlying site directly, we cannot guarantee the current page will be displayed, since there is no way for JS or HTML to query the current URL of an iFrame (for security reasons).
All we can do is show the ...
Is there a way to detect if my page is inside of a frame from my C# ASP.NET Code Behind?
I know there are ways to break out of frames, or detect frames, using javascript, but I'm not interested in that for this case. I want to know if there is a way to detect the frame server-side before the page makes it's first trip to the browser, i....
hi, i have an ifram, which has hidden visibility.
i click on button - iframe will be visible and i want to focus on its body/content.
because now i must click on button and then into iframe, so thats two clicks. i want to do it on one click, but dont know how to focus in firefox.
in explorer it is ok:
var iframe_window = window.frame...
Hello,
I have a webpage (A) and I am embedding (A) to my mainpage (B) using iframe. This (A) contains a link which closes the browser window:
<a href="" onclick="window.opener = window;
window.close();
return false;">Close The Page</a>
Since I embedd (A), the close ability in (A) is no more functional. What I need to do is, w...
I tried a lot of ways but non of them worked. For example that one works:
$('#iframeid').ready(
function()
{
alert('Hello');
}
);
but following doesn't (alerts hello but do not focus.)
$('a:link').click(
function()
{
alert('Hello');
var iframeRef = document.getElementById("if...
Hi,
I want to be able access an rss feed from js. I have the ability to configure both servers to use the same domain (but different subdomains - eg static.benanderson.us and tech.benanderson.us). I was hoping I could use the document.domain property to get around the xss issue. Here's a snippet http://static.benanderson.us/example.j...
So I know that if I include an iFrame to a page that is not on the same domain I can't access that iframe's DOM via browser policy, but can a page that is in an iframe do any kind of parent document accessing?
Specifically I have to ideas that are contingent on this question:
If the embedded page can tell that it is not the parent win...
I'm implementing a "widget" that will be included on article/story pages of a 3rd-party website. This widget lives in an <iframe> hosted on our domain. It needs to gather text from the articles of its parent page (the 3rd-party website), which it then uses to make a variety of API calls to services that return related content, which is t...
Hi There,
Currently building a site in ASP.NET MVC and have to integrate another site within it, in an IFrame. It is the wish of the client to have one login for both systems, so the user logs in in the parent site, and then are automatically authenticated on the IFramed site. Of course, if this were possible then it could be assumed tha...