kazi_hassan
Newbie
Posts: 1
Registered: 11/4/2003
Member Is Offline
|
| posted on 11/4/2003 at 05:10 AM |
|
|
Want to use a single html page for all menu items
Hi,
I would like to use the same html page for all menu items but also need to change the content of the image on that page with every atomic items.
i.e, want to use something like ,
content.document[photo].src = 'photo1'
Thanks,
Kazi
|
|
|
rock
Moderator
Posts: 687
Registered: 4/15/2003
Member Is Offline
|
| posted on 11/4/2003 at 05:19 PM |
|
|
You could use string var to substitute link field.
E.g.
var my_link = 'http://www.softcomplex.com/';
var TREE_ITEMS = [
['Home', my_link ,
['Services', my_link],
...
|
|
|