On Fri, 2010-01-29 at 22:33 +0100, Rene Veerman wrote: > other idea: <iframe>s, and plain old links. > > > On Fri, Jan 29, 2010 at 10:32 PM, Rene Veerman <rene7705@xxxxxxxxx> wrote: > > flash(develop.org) perhaps? or does that also fall under their > > no-active-x policy? > > > > On Fri, Jan 29, 2010 at 9:17 PM, Haig Davis <level510@xxxxxxxxx> wrote: > >> Good Day All, > >> > >> The headscratcher of the day for me is as follows: > >> > >> I'm busy designing a scheduling page in a table form (actually series of > >> floating css divs) showing days of week across/ rooms down. thats the easy > >> part and bookings in each cell. I know I can take the results of a query > >> call it expanded booking details start_ob output to html save to file/ > >> image etc, that way on mouse over the date I can use CSS to explode the > >> image file displaying the results. Here's my question. > >> > >> Any hints can I do all of this on the fly yet not display the HTML query > >> results that are created until mouse over ..... I'm sure this is easy with > >> javascript my problem is my client does has disabled javascript/ active X > >> scripts. > >> > >> Been scratching my head for a while and it's starting to bleed. > >> > >> Thanks and have a great weekend. > >> > >> Cheers > >> > >> Haig > >> > > > Quite easy to do with some CSS. <a href="#" class="details"> regular content <div class="details">hidden until mouse overed</div> </a> And the CSS would be something like: a.details { position: relative; } a.details div.details { position: absolute; top: 0px; left: 0px; display: none; } a:hover div.details { display: block; } This is a simplified example, but works without Javascript, and if the browser doesn't support CSS, the hidden details are just displayed normally, which is the best fail method I think. Thanks, Ash http://www.ashleysheridan.co.uk