Hi! I want to put a html file into another html file . I tried iframe and object tag, which works but the problem is i also get scrolling frames. How can i insert a html file into another html file as it is without anything added to it like scrolling bars ?
Thx !
samson.oba.77 0 Newbie Poster
Recommended Answers
Jump to PostThe best way is server side using either php or asp.net or any other server side language.
If server side is not an option for you than sticking with your iframe you can hide bars like this in css:<iframe src="/path/to/file.html" seamless></iframe>
iframe[seamless] {
border: none;}
Remember though that iframes have many, many …
Jump to PostNote that .load() requests files from the server.
An alternative would be to use SSI (server side includes):http://en.wikipedia.org/wiki/Server_Side_Includes
<!--#include file="footer.html" -->
However the "containing page" should have the …
All 6 Replies
tdrosiadis 0 Light Poster
gentlemedia 803 Master Poster
Alicera Nz 0 Newbie Poster
Alicera Nz 0 Newbie Poster

diafol
samson.oba.77 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.