I need to display parts of another website on my own website in an iframe. There is a particular secion of this site that I'm interested in that's i.e. 100px wide and 400px high and is always placed 350px from the top and 100px from the left. Is it possible for me to have an iframe of 100x400 that displays this exact position on the underlaying website?
Thanx in advance
Lumbago
"Real programmers don't document, if it was hard to write it should be hard to understand"
Be careful showing another website in an iframe -- hiding the (website's) identifying information is copyright infringement.
FYI
* My screen resolution is set at 1680x1050
* I'm accessing your site through a T1 line
* I'm probably viewing it using Firefox (unless browser is specified)
Thanx alot fellas...I'm actually gonna use it to display a service status column from a local webserver on our intranet so the copyright issues aren't a problem. The "source" website is on another network and I need a quick hack...
Lumbago
"Real programmers don't document, if it was hard to write it should be hard to understand"
very Nice But Please tell me any way by which i can apply IFRAME to show a specific part of web page and also alongwith this i can stop media streaming on source web page.
Thanks!
Thanks guys, I managed to get my search box from my main site to appear in an iframe on some other micro sites. I just can't get the search box results displayed in New Window.
I embedded;
#container{
width:100px;
height:400px;
border:1px solid #000;
overflow:hidden;
margin:auto;
}
#container iframe {
width:200px;
height:750px;
margin-left:-100px;
margin-top:-350px;
border:0 solid;
I embedded above in my site CSS and the following adopted for the iframe which worked seamlessly.
The easy and reliable way to show part of a web page in an Iframe is to use position:absolute and overlay the parts of the iframe you do not want to display (copyright allowing) with divs with a higher z-index.
Bookmarks