Control twisty URLs in embedded views

Control twisty URLs in embedded views
JavaScript • Lotus Notes View


function modifyURLs() {
            // loop through the links array and add URL parms
            var url = "";
            for(i=0; i<document.links.length; i++) {
                        url = document.links[i].href;
                        if (url.indexOf("Expand")>0 || url.indexOf("Collapse")>0) {  
                                  document.links[i].href += "&vb=" + document.forms[0].loadedVB.value;  
                        }                                   
            }
}

Posted by fbrefere001 on Saturday March 4, 2006