Log in

View Full Version : non Scrollable IFRAME



wadibahi
08-14-2010, 08:26 AM
Hi frnds!
i need non Scrollable IFRAME
and any one can tell me how i stop to reload images

Thanks in advance

jscheuer1
08-14-2010, 12:32 PM
For the first:


<iframe src="whatever.htm" width="300" height="250" scrolling="no"></iframe>

See also:

http://www.w3schools.com/tags/att_iframe_scrolling.asp

For the second, I'm not sure what you mean. An image may always be reloaded in one of two ways:


From the browser's cache.

From the server.


You can prevent the browser from caching the image. But the only ways of preventing the image from being reloaded from the server are to either remove it from the server or to remove the code that points to it on the server from your page. In either of these cases, that will make the image disappear.

What exactly are you trying to do with the image, and why?

wadibahi
08-14-2010, 06:55 PM
Thanks for this script