Search found 2 matches

by kev_hilton@hotmail.com
Sun May 19, 2002 10:50 am
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Menu dynamic horizontal positioning
Replies: 1
Views: 2190

Re: Menu dynamic horizontal positioning

Am I able to call spos from the main html file after first calling the PlaceMenu function? Also when calling spos I would like to invoke the following:

->>As written
spos(gm,t_,l_,h_,w_)

Does gm refer to the object????? If gm represents an object I would like to use the following call:

spos(gmobj ...
by kev_hilton@hotmail.com
Sat May 18, 2002 10:15 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Menu dynamic horizontal positioning
Replies: 1
Views: 2190

Menu dynamic horizontal positioning

Im interested in dynamically adjusting the width of the menu to span the width of the browser page. I can detect the width of the browser window with the following

function setwinwidth(){
if (window.innerWidth == null) {iw = document.body.clientWidth;}
else { iw = window.innerWidth;}
return iw ...