|
Posted by Dr Clue on 09/21/05 04:36
osman wrote:
> Hi all, I'm working on a site where I need to have a gallery.
> I've been given a few pictures to start off with and I'd like to show
> it all on one page.
> My one works, but there are issues.
> It has little code (unordered list) and works(?) in all browsers :
>
> http://chameleonmoments.com/station13/art.html
> (not tested in ie)
>
> On one side I've used an iframe with a target name (name="picture").
> On the other side there are the thumbnail links with target
> destinations (target="picture").
>
> I know that the use of iframes is a real no-no, I want to know what the
> alternatives are.
> Something simple and obvious, surely.
>
> Javascript is not an option and neither is php. Its a static 5 page
> site.
>
Something like this could work with a div in the page
<div id="DIVpicture"></div>
document.getElementById("DIVpicture").innerHTML='<img src="my.gif">')
--
--.
--=<> Dr. Clue (A.K.A. Ian A. Storms) <>=-- C++,HTML, CSS,Javascript
--=<> http://resume.drclue.net <>=-- AJAX, SOAP, XML, HTTP
--=<> http://www.drclue.net <>=-- SERVLETS,TCP/IP, SQL
--.
[Back to original message]
|