Sorry list, I know this is off-topic:
John/Fabio,
What I always recommend, is to shy away *completely* from
JavaScript-driven menus, do it with plain (X)HTML and CSS, so that
your site
will continue to work on mobile phones, voice browsers, etc. without
the need
to add in transformation gateways / portals etc. when you need it.
A tree menu can be effected by simply using an HTML list:
> <ul class="menu">
> <li>
> Menu 1
> <ul>
> <li>Option 1.1</li>
> <li>Option 1.2</li>
> <li>
> Option 1.3
> <ul>
> <li>Option 1.3.1</li>
> <li>Option 1.3.1</li>
> </ul>
> </li>
> </ul>
> </li>
.. you get the idea. No scripting or other junk. Then, a couple of
simple rules in CSS could be attached to provide correct tree/drop-
down menu
behaviour. For example, rules like:
> /* Hide sub-menus... */
> ul.menu li ul
> {
> display: none;
> }
>
> /* ... Unless the user's mouse hovers over the sub-menu item */
> ul.menu li:hover ul
> {
> display: block;
> }
etc. Works like a charm for us - simple, configurable, non evil
JavaScript.
You really don't need any 'product' - commercial or free, to make this
work
better than most of those 'products' in anyway.
regards,
Dawid
On 01 Oct 2008, at 1:16 PM, Fabio Fiorellato wrote:
>
> John, how complex is the tree you do need on your website?
>
> Consider that designing a simple (yet customizable) tree to embed in
> a Web
> site is a matter of minutes nowadays, with a total cost of 0$ in
> software
> licences.
>
> Take a look, for instance, at: http://jquery.bassistance.de/treeview/demo/
>
> If you need further help / clarification, feel free to drop me a
> mail...
>
> Ciao!
>
> Fabio
>
> On Wed, Oct 1, 2008 at 12:42 PM, John Hudson <OM4T@xxxxxxxxxxx> wrote:
>
>>
>> I am looking for a tree menu system that can be used on one's web
>> site.
>>
>> A google search brings up Sothink ........
>> www.sothink.com .......... on
>> numerous occasions. There is a 30 day free review period after
>> which it
>> costs $59.95 for a licence.
>>
>> Are there any recommendations about sothink or other tree menu
>> systems that
>> are available?
>>
>> John Hudson
>>
>>
>>
>>
>>
>>
>> ==============================================
>> List usage info: http://www.zuikoholic.com
>> List nannies: olympusadmin@xxxxxxxxxx
>> ==============================================
>>
>
>
>
> --
> The definitive answer to the meaning of life, universe and
> everything else
> is: 42.
>
>
> ==============================================
> List usage info: http://www.zuikoholic.com
> List nannies: olympusadmin@xxxxxxxxxx
> ==============================================
==============================================
List usage info: http://www.zuikoholic.com
List nannies: olympusadmin@xxxxxxxxxx
==============================================
|