Forum Moderators: not2easy
So here's what I can't figure out (would've attached a layout pic but I don't see that as a post option):
I have a CSS layout, basically two 400x300 columns adjacent to eachother. This is for a site that will be pulling inventory from a database. The idea is that the left "box" contains the pulled inventory list, and then when you select one of the items, its details populate in the box at right.
Now, how will that occur without having to reload the whole page, which among other annoyances, would re-pull the inventory? In effect, I would want it to work like the HTML frames of old, except hopefully not nearly as ugly. I want the inventory list to stay put once it's pulled for the first time, allowing people to clickety click any item they want and have it populate in the other box without page reload.
At any rate, replies or no replies, it's good to be here. Thanks for reading.
Mimicking frames with CSS can be a complex thing, depending on the browser support you want. Here's a thread with one CSS approach for emulating frames:
[webmasterworld.com...]
iFrames on the other hand are very easy to use, if you don't wanna get into the PHP thing...
<iframe id="navMenu" src="menu.html">
</iframe>
that's basically all you would need to make an iFrame.