Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Three options:<br /></p> <p>1 - outdated - look into the <code>&lt;iframe&gt;</code> tag, but I don't recommend this - it's outdated and unused for many good reasons.</p> <p>2 - recommended: </p> <ul> <li>make a template that looks like the main page.</li> <li>Include it on each of the 'sub-entity' pages. </li> <li>Put the 'sub-entity' content in as appropriate. </li> </ul> <p>Now, you've got something that LOOKS like the parent page isn't moving. (should probably be done with PHP or something similar, but can be done with just HTML)</p> <p>3 - not so good:</p> <ul> <li>make a PHP page that outputs the sub-entity content.</li> <li>Use a <code>&lt;form&gt;</code> to submit the page with some <code>POST</code> data. </li> <li>Use the <code>POST</code> data to find which sub-entity page you want to output.</li> </ul> <p>Also, the word sub-entity is not the right terminology. I assume you're talking about the children of the window's document body:</p> <p><code>WINDOW [ HTML [ BODY [ ] ] ]</code> is equivalent to your<br /> <code>PARENT PAGE [ SUB-ENTITY PAGES [ SUB-ENTITY PAGES [] ] ]</code> which is similar to<br /> <code>WINDOW [ DOCUMENT [ BODY [] ] ]</code></p> <p>Hope this helps, or at least gives you a starting point.</p> <p>====================</p> <p>To redirect to the home page when clicking ANYWHERE on the home page, use javascript:</p> <pre><code>&lt;script type='text/javascript'&gt; document.body.onclick = function() { window.location.href = "index.htm"; } &lt;/script&gt; </code></pre> <p>A link to the homepage is obviously</p> <pre><code> &lt;a href='index.htm'&gt;HOME&lt;/a&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload