Client Side Includes are HTML includes achieved on the client-side. This means that the inclusions can be cached on the client. It also means that web pages with includes can be viewed locally on the file system without a web server.
However, while HTML allows the direct inclusion of CSS, JavaScript and Image files into a web page it has never allowed direct inclusion of HTML. There are several tricks to achieve this, each with their own problems. These include:
- Using an IFrame, which includes content in a clearly separate, fixed size area.
- Converting the HTML code into a JavaScript program that inserts the HTML into the DOM.
- Using JavaScript with Ajax to load the HTML. No modern web browsers will generally allow this to work directly from the file system due to security concerns.
These client-side includes are relatively complex, are not accessible to WYSIWYG editors, and rely on the client's support of their respective technologies. In the case of frames and iframes, they are less accessible.
At first it seems that manually copying and recopying HTML fragments from page to page is the easiest way, but SSI/CSI pays off. In the future, browsers may implement the W3C XInclude specification which enables client-side includes. Similarly, client-side XML includes may be done in some browsers today through the use of DTDs and external entities.
Read more about this topic: Server Side Includes
Famous quotes containing the words client, side and/or includes:
“A client is to me a mere unit, a factor in a problem.”
—Sir Arthur Conan Doyle (18591930)
“Every fact is related on one side to sensation, and, on the other, to morals. The game of thought is, on the appearance of one of these two sides, to find the other: given the upper, to find the under side.”
—Ralph Waldo Emerson (18031882)
“And it seems to me a blasphemy to say that the Holy Spirit is Love. In the Old Testament it is an Eagle: in the New it is a Dove. Christ insists on the Dove: but in His supreme moments He includes the Eagle.”
—D.H. (David Herbert)